aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui
Commit message (Collapse)AuthorAgeFilesLines
...
* | Remove Table.setLazyLoading (#6010)Leif Åstrand2012-05-301-13/+0
| |
* | Updated AbstractOrderedLayout to no longer use paintContentArtur Signell2012-05-141-61/+48
| |
* | Fixed problem with iterator containing null (#8729)Artur Signell2012-05-141-0/+4
| |
* | Updated Label to use shared stateArtur Signell2012-05-111-151/+24
| |
* | Updated Audio and Video to use stateArtur Signell2012-05-112-71/+47
| |
* | Moved most of TextField/TextArea/PasswordField paintContent to stateArtur Signell2012-05-112-143/+33
| | | | | | | | Removed deprecated value formatter from AbstractTextField (#8672)
* | Initial support for sending difference in state (#8419)Artur Signell2012-05-112-12/+18
| | | | | | | | | | | | | | | | Forces the shared state to be the type declared by getStateType (#8677) Creates an empty object for reference when doing a full repaint, causing only the differences between a freshly created object and the current state to be sent.
* | Merge remote branch 'origin/6.8'Leif Åstrand2012-05-042-1/+30
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ApplicationConfiguration.java src/com/vaadin/terminal/gwt/client/BrowserInfo.java src/com/vaadin/terminal/gwt/client/HistoryImplIEVaadin.java src/com/vaadin/terminal/gwt/client/ui/VButton.java src/com/vaadin/terminal/gwt/client/ui/VDateFieldCalendar.java src/com/vaadin/terminal/gwt/client/ui/VGridLayout.java src/com/vaadin/terminal/gwt/client/ui/VNativeButton.java src/com/vaadin/terminal/gwt/client/ui/VNotification.java src/com/vaadin/terminal/gwt/client/ui/VView.java src/com/vaadin/terminal/gwt/server/AbstractApplicationPortlet.java src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java src/com/vaadin/terminal/gwt/server/JsonPaintTarget.java src/com/vaadin/terminal/gwt/server/RequestTimer.java src/com/vaadin/ui/Button.java tests/test.xml tests/testbench/com/vaadin/tests/components/TouchScrollables.java
| * [merge from 6.7] Use equals instead of == to compare item ids (#8712). Using ↵Automerge2012-04-271-1/+1
| | | | | | | | | | | | == will fail at least with JPAContainer as the entity provider provides the id instances and it is not guaranteed that the same instance is returned every time (e.g. if using a Long the longs represent the same number but are not the same instance) svn changeset:23655/svn branch:6.8
| * Add support for html in buttons (#8663)Leif Åstrand2012-04-261-0/+38
| | | | | | | | svn changeset:23634/svn branch:6.8
* | 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
| |