summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui
Commit message (Collapse)AuthorAgeFilesLines
* Method for finding the first ancestor of a given type (#8182)Artur Signell2012-04-191-27/+26
|
* Fixed problem with Panel not repainting its contents (#8700)Artur Signell2012-04-191-0/+9
|
* Removed dead codeArtur Signell2012-04-191-1/+0
|
* Handled enabled state cascading on client side (#8507)Artur Signell2012-04-191-11/+0
| | | | Now avoids repainting the full hierarchy if the enabled state of a component container changes.
* RPC -> Rpc for consistencyArtur Signell2012-04-189-18/+18
|
* Simplified RPC handling for client to server RPCArtur2012-04-182-4/+2
| | | | | | Target connector validity (enabled) is checked for all RPC calls ClientConnector is always an RpcTarget Removed unused RpcManager.target
* Use declared RPC parameter types (#8666)Artur Signell2012-04-181-3/+3
|
* Explicitly paint CustomLayout to send template to the client (#8688)Leif Åstrand2012-04-181-1/+23
|
* Merge remote branch 'origin/6.8'Leif Åstrand2012-04-182-16/+23
|\ | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java tests/server-side/com/vaadin/tests/server/component/tabsheet/TestTabSheet.java
| * [merge from 6.7] Reverted #7607 fixes and removed the test for now because ↵Automerge2012-04-171-4/+7
| | | | | | | | | | | | they cause the #8662 regression. svn changeset:23566/svn branch:6.8
| * #8203 Improved javadoc, added null checkJohannes Dahlström2012-04-121-7/+10
| | | | | | | | svn changeset:23504/svn branch:6.8
| * Fixed #8653: addTab(index) should not throw if index is out of boundsJohannes Dahlström2012-04-121-5/+6
| | | | | | | | svn changeset:23503/svn branch:6.8
* | Reformatted all source filesArtur Signell2012-04-165-5/+0
| |
* | Show the right target type in the exception messageLeif Åstrand2012-04-131-1/+1
| |
* | Rename v-paintable -> v-connector (#8652)Leif Åstrand2012-04-121-2/+2
| |
* | Removed deprecated an unneded setAlignment based on String (#8169)Artur Signell2012-04-123-185/+2
| |
* | Removed deprecated interface (#8169)Artur Signell2012-04-122-6/+3
| |
* | Removed getLayout/setLayout (#8169)Artur Signell2012-04-121-39/+0
| |
* | Workaround for problem with wrong state being createdArtur Signell2012-04-121-0/+8
| |
* | Move SharedState and ServerRpc classes out from Connector classesArtur Signell2012-04-1210-17/+17
| |
* | Moved each component to its own package on client sideArtur Signell2012-04-1225-38/+38
| | | | | | | | | | | | Class loaders have problems with referring to static inner classes (e.g. state classes) when they cannot load the declaring class. To deal with this the components have been moved to their own packages and state/rpc classes will be defined in their own Java files.
* | Moved shared classes out from connector to avoid class loader problemsArtur Signell2012-04-121-9/+9
| |
* | Button, NativeButton and CheckBox are no longer Vaadin6ComponentsArtur Signell2012-04-123-60/+65
| | | | | | | | Added FocusAndBlurServerRpc for sending focus and blur events to any component.
* | Component no longer implements PaintableArtur Signell2012-04-1229-284/+222
| |
* | Updated Root to use hierarchy change event for content and windowsArtur Signell2012-04-121-28/+20
| |
* | Merge remote-tracking branch 'origin/6.8'Artur Signell2012-04-121-8/+39
|\| | | | | | | | | Conflicts: src/com/vaadin/ui/AbstractField.java
| * #6155 Javadoc/comments; refresh field value from data source on attachJohannes Dahlström2012-04-111-8/+39
| | | | | | | | svn changeset:23476/svn branch:6.8
* | Ensure table rows are sent when a Table tab is re-selected (#8642)Leif Åstrand2012-04-111-0/+4
| |
* | Merge remote-tracking branch 'origin/6.8'Artur Signell2012-04-101-10/+18
|\| | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ui/VAbstractSplitPanel.java src/com/vaadin/ui/AbstractSplitPanel.java
| * Allow splitter position to be float to avoid rounding errors (#4296)Artur Signell2012-04-101-13/+22
| | | | | | | | svn changeset:23419/svn branch:6.8
* | Internally remove component before detach listener is calledArtur Signell2012-04-101-2/+1
| |
* | Merge remote branch 'origin/6.8'Leif Åstrand2012-04-102-23/+87
|\| | | | | | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ui/VTabsheet.java src/com/vaadin/terminal/gwt/client/ui/VTree.java src/com/vaadin/terminal/gwt/client/ui/VWindow.java src/com/vaadin/ui/AbstractField.java
| * #8203 Added TabSheet#setSelectedTab(int) and ↵Johannes Dahlström2012-04-051-1/+22
| | | | | | | | | | | | TabSheet#setSelectedTab(TabSheet.Tab) svn changeset:23408/svn branch:6.8
| * Implemented #8307: Added AbstractField#removeAllValidators()Johannes Dahlström2012-04-051-0/+10
| | | | | | | | svn changeset:23407/svn branch:6.8
| * Fixed #6155: stop listening to Property value change and read only status ↵Johannes Dahlström2012-04-051-20/+41
| | | | | | | | | | | | change events on detach to avoid a potential memory leak, resume listening on attach svn changeset:23406/svn branch:6.8
* | Disable TreeTable partial updates until it is fixedArtur Signell2012-04-051-1/+3
| | | | | | | | Currently TreeTable changes its child components during paint, which is too late for AbstractCommunicationManager to take into account
* | Actually use and update shared state variables on server sideArtur Signell2012-04-051-52/+15
| |
* | Moved Collapsible and HierarchicalContainerOrderedWrapper to dataHenri Sara2012-04-053-131/+2
| | | | | | | | | | | | | | packages (related to #8440) - should not be specific to TreeTable. Otherwise, having a package and a class by the same name causes problems when trying to compile a widgetset on systems that do not treat file names as case sensitive.
* | Fixed spacing that was only partly moved to shared stateArtur Signell2012-04-054-57/+7
| |
* | Moved Form child component references to stateArtur Signell2012-04-051-54/+50
| |
* | Updated CustomLayout to use shared state and new eventsArtur Signell2012-04-051-59/+18
| |
* | #8602 Added support for Map<Connector,?>Artur Signell2012-04-051-3/+1
| |
* | Fixed FormLayoutConnector to use state and hierarchy listenersArtur Signell2012-04-051-0/+6
| | | | | | | | Added AbstractOrderedLayoutState for spacing info
* | Moved margins to AbstractLayoutStateArtur Signell2012-04-052-17/+10
| |
* | Updated CssLayout to use new state and hierarchy change eventsArtur Signell2012-04-051-27/+14
| |
* | Fixed typoArtur Signell2012-04-051-1/+1
| |
* | Updated AbsoluteLayout to use hierarchy and state change eventsArtur Signell2012-04-051-69/+111
| |
* | Moved basic Window state attributes to WindowStateArtur Signell2012-04-051-36/+3
| |
* | Created GridLayoutState with basic GridLayout stateArtur Signell2012-04-051-49/+43
| |
* | Automatically create state on server side based on getState return typeArtur Signell2012-04-056-29/+28
| |