aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/terminal/gwt/client/ui/AbstractComponentConnector.java
Commit message (Collapse)AuthorAgeFilesLines
* Moved client files to a client src folder (#9299)Artur Signell2012-08-131-407/+0
|
* Move classes common to client and server to com.vaadin.shared.* (#8934)Leif Åstrand2012-07-271-2/+3
|
* Add Java 6 @Override annotations to all methods from interfacesLeif Åstrand2012-07-231-0/+11
|
* Fixed connector so it no longer overwrites all style attributes (#8664)Pekka Hyvönen2012-06-281-44/+112
|
* Tooltips are now handled by the connector and not the widget (#8425)Sami Viitanen2012-06-281-10/+19
|
* Properly update v-disabled styles for most components (#8719)Leif Åstrand2012-06-191-0/+15
|
* Initial extension support (#6690)Leif Åstrand2012-06-061-49/+18
|
* State is now created using generators, removed setState (#8502)Artur Signell2012-05-111-30/+11
|
* Additional tweaks based on review (#8507)Artur Signell2012-04-191-5/+3
|
* Handled enabled state cascading on client side (#8507)Artur Signell2012-04-191-6/+11
| | | | Now avoids repainting the full hierarchy if the enabled state of a component container changes.
* Remove widget if it is still in the DOM when connector is unregisteredArtur Signell2012-04-181-4/+5
|
* Changed getStyleNames to be non static so it can be overriddenArtur Signell2012-04-161-33/+15
|
* Reformatted all source filesArtur Signell2012-04-161-2/+4
|
* Rename v-paintable -> v-connector (#8652)Leif Åstrand2012-04-121-1/+1
|
* API naming change, needs update -> needs layoutLeif Åstrand2012-04-121-2/+2
|
* Re-added ApplicationConnection.updateCaption to ease portingArtur Signell2012-04-121-0/+1
|
* Move SharedState and ServerRpc classes out from Connector classesArtur Signell2012-04-121-13/+0
|
* Moved shared classes out from connector to avoid class loader problemsArtur Signell2012-04-121-0/+1
|
* Fixed GridLayout caption rendering Artur Signell2012-04-051-10/+6
| | | | Components that do not delegate caption handling to parent should not get a caption
* Avoid adding empty id attributes to all connector widgetsArtur Signell2012-04-051-1/+1
|
* ServerConnector is no longer a Paintable, components using updateFromUidl areArtur Signell2012-04-051-5/+0
|
* Avoid warning for RootConnector not having a parentArtur Signell2012-04-051-5/+3
|
* Unregister event for ServerConnectorArtur Signell2012-04-051-0/+13
|
* Removed unused createState() from client sideArtur Signell2012-04-051-24/+1
|
* Generator to ease initialization of client to server rpc proxiesArtur Signell2012-04-051-15/+0
|
* AbstractComponent.updateFromUIDL moved to state change (#8436)Artur Signell2012-04-051-23/+30
|
* Replaced "defer" status with "cached" to be more Vaadin 6 compatibleArtur Signell2012-03-301-12/+3
|
* Refactored ClickEventHandler and LayoutClickEventHandler to use RPCArtur Signell2012-03-291-0/+12
|
* Remove UIDL parameter from many caption related methods (#8435).Henri Sara2012-03-211-34/+1
| | | | | Visibility change related code for captions removed from VCaption, VCaptionWrapper and VFormLayout.Caption, should be handled by removing/adding caption based on hierarchy change events.
* Transfer required attribute in shared state (#8436).Henri Sara2012-03-211-10/+2
| | | | | The flag should be used directly from shared state, but that requires error message etc. related updates to be done in a listener before sending states.
* Convert hide errors flag to shared state (#8437).Henri Sara2012-03-211-1/+0
|
* Refactor error messages not to use UIDL (#8437).Henri Sara2012-03-211-7/+2
| | | | This change removes support for error messages on tabs of a tabsheet or an accordion. Those should be implemented differently if needed.
* Removed unused code related to old offsetSize stored in ComponentDetailArtur Signell2012-03-211-7/+0
|
* #8438 Event handler registration is now a Set in the shared stateArtur Signell2012-03-211-4/+16
|
* Made debug id:s work againArtur Signell2012-03-211-4/+5
|
* Removed extra getDeclaredWidth/getDeclaredHeight as they directlyArtur Signell2012-03-161-40/+17
| | | | contain the width and height from the state.
* 8500 Let the framework handle unregistration of ConnectorsArtur Signell2012-03-141-3/+5
|
* #8500 Print an error message instead of throwing NPE if parent cannot beArtur Signell2012-03-141-1/+8
| | | | found for some reason
* Connector interface. Renamed getId() -> getConnectorId() to avoid mixupsArtur Signell2012-03-141-3/+3
|
* Moved styles list to shared state, replacing the previous String hack.Artur Signell2012-03-141-4/+3
|
* Fixed readonly handling for fields (depends on property readonlyArtur Signell2012-03-131-23/+35
| | | | status) and enable state handling for components on client side (depend on parent)
* #8510 Support using Resources through URLReference/ResourceReference inArtur Signell2012-03-131-1/+0
| | | shared state and RPC calls
* #8500 Initial implementation for sending component hierarchyArtur Signell2012-03-131-17/+23
| | | | | | automatically to the client and calling a listener method (for the parent) when its child hierarchy has been updated. Minor cleanup of JSON handling at the same time.
* Use ComponentState for storing the state, not just as a communicationArtur Signell2012-03-131-2/+2
| | | | mechanism. Changed isDisabled to more logical isEnabled in state.
* Define .v-has-width/height instead of v-undefined-width/height (#8313)Leif Åstrand2012-03-051-2/+2
|
* Renamed ClientToServerRpc -> ServerRPCArtur Signell2012-02-281-3/+3
|
* #8448 Replaced id and connection setters with parameters to the init method ↵Artur Signell2012-02-281-46/+11
| | | | and refactored RootConnector initialization to be compatible with this
* #8434 Renamed *Paintable classes to *Connector and updated ConnectorMapArtur Signell2012-02-271-0/+476
accordingly