aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/TabSheet.java
Commit message (Collapse)AuthorAgeFilesLines
* Moved server files to a server src folder (#9299)Artur Signell2012-08-131-1328/+0
|
* Add Java 6 @Override annotations to all methods from interfacesLeif Åstrand2012-07-231-0/+29
|
* Merge branch '6.8'Johannes Dahlström2012-06-191-29/+10
|\ | | | | | | | | | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ui/draganddropwrapper/VDragAndDropWrapper.java src/com/vaadin/terminal/gwt/client/ui/form/VForm.java src/com/vaadin/terminal/gwt/client/ui/window/VWindow.java tests/server-side/com/vaadin/tests/VaadinClasses.java Removed Java5-incompatible @Override annotations
* | Merge commit '99786'Johannes Dahlström2012-06-111-46/+61
|\| | | | | | | | | Conflicts: src/com/vaadin/ui/TabSheet.java
| * [merge from 6.7] #8793 Retain all tab metadata, not just caption and icon, ↵Johannes Dahlström2012-05-181-46/+32
| | | | | | | | | | | | in TabSheet.replaceComponent() svn changeset:23761/svn branch:6.8
* | Merge remote branch 'origin/6.8'Leif Åstrand2012-04-181-12/+16
|\| | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java tests/server-side/com/vaadin/tests/server/component/tabsheet/TestTabSheet.java
| * #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
* | Moved each component to its own package on client sideArtur Signell2012-04-121-2/+2
| | | | | | | | | | | | 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.
* | Component no longer implements PaintableArtur Signell2012-04-121-7/+6
| |
* | Ensure table rows are sent when a Table tab is re-selected (#8642)Leif Åstrand2012-04-111-0/+4
| |
* | Merge remote branch 'origin/6.8'Leif Åstrand2012-04-101-1/+22
|\| | | | | | | | | | | | | | | 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
* | Replace @ClientWidget with client-side @Component (#8440)Henri Sara2012-04-041-2/+0
| |
* | #8437 Error indicators in tabs work againArtur Signell2012-03-221-1/+6
| |
* | Refactor error messages not to use UIDL (#8437).Henri Sara2012-03-211-9/+3
| | | | | | | | This change removes support for error messages on tabs of a tabsheet or an accordion. Those should be implemented differently if needed.
* | Added generics to KeyMapper and made it based on HashMap instead ofArtur Signell2012-03-211-5/+4
| | | | | | | | Hashtable
* | Made TabSheet work again and removed TabSheet tab caching for nowArtur Signell2012-03-141-15/+27
| | | | | | | | (part 2)
* | Made TabSheet work again and removed TabSheet tab caching for nowArtur Signell2012-03-141-36/+9
| |
* | #8500 Allow component containers to hide their children even thoughArtur Signell2012-03-141-0/+5
| | | | | | | | | | the children are visible. Allows Tabsheet to disallow updates to all tabs except the selected.
* | #8510 Support using Resources through URLReference/ResourceReference inArtur Signell2012-03-131-2/+1
| | | | | | shared state and RPC calls
* | Merge remote-tracking branch 'origin/6.8'Johannes Dahlström2012-03-021-1/+53
|\| | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ui/VTabsheet.java src/com/vaadin/ui/TabSheet.java
| * #5100 Support for server-side focus/blur listeners; handle disabled tabs ↵Johannes Dahlström2012-02-271-10/+27
| | | | | | | | | | | | correctly; handle tab scrolling correctly; removed debug messages svn changeset:23113/svn branch:6.8
| * Patch for #5100 - TabSheet keyboard navigationJohannes Dahlström2012-02-161-1/+36
| | | | | | | | | | | | | | | | | | - The active tab button in the tab bar is now focusable by clicking or via tabulator - When the focus is in the tab bar, the tab can be changed with left and right arrow keys - Delete key closes the active focused tab if closable - TODO: programmatic control on server side, configurable keyboard shortcuts svn changeset:23052/svn branch:6.8
| * Reverted bad commit [23048]Johannes Dahlström2012-02-161-36/+1
| | | | | | | | svn changeset:23050/svn branch:6.8
| * #5100 test caseJohannes Dahlström2012-02-161-1/+36
| | | | | | | | svn changeset:23048/svn branch:6.8
* | Renamed Paintable component classes to ConnectorArtur Signell2012-02-281-6/+6
| |
* | #8434 Renamed *Paintable classes to *Connector and updated ConnectorMapArtur Signell2012-02-271-2/+2
| | | | | | accordingly
* | Communicate caption of components in shared state (#8304).Henri Sara2012-02-231-1/+2
| |
* | Communicate disabled flag in shared state (#8304).Henri Sara2012-02-231-1/+3
| |
* | Use constants for some more UIDL attribute names.Henri Sara2012-02-221-0/+2
| |
* | Convert some literal strings of UIDL attributes to use constants.Henri Sara2012-02-211-2/+6
| |
* | Split Accordion and TabSheet into widget + paintableArtur Signell2012-01-311-2/+2
|/
* #7354 IT Mill -> Vaadin find and replaceArtur Signell2011-12-081-5/+5
| | | | svn changeset:22317/svn branch:6.7
* #2669 Tabsheet failes to render cached tabLeif Åstrand2011-09-131-1/+6
| | | | svn changeset:20992/svn branch:6.7
* #5880 Removed some more Java 1.6 api that somehow slipped alongLeif Åstrand2011-08-161-1/+1
| | | | svn changeset:20405/svn branch:6.7
* #5880 Add style name support for Tabsheet's Tab interfaceLeif Åstrand2011-08-161-0/+56
| | | | svn changeset:20402/svn branch:6.7
* #7128 Add TabSheet.addTab(Component,String)Artur Signell2011-07-181-0/+20
| | | | svn changeset:19827/svn branch:6.7
* JavaDoc fix.John Alhroos2010-12-221-9/+4
| | | | svn changeset:16618/svn branch:6.5
* - Changed get/setTabIndex to get/setTabPosition since tabIndex might be ↵John Alhroos2010-12-221-19/+18
| | | | | | | | | | | associated with tabbing - Changed implementation of addTab (with position) so that it never moves a existing tab. - Added unit tests #6188 svn changeset:16617/svn branch:6.5
* Revised for #6188John Alhroos2010-12-211-9/+4
| | | | svn changeset:16614/svn branch:6.5
* Fix for #6188 + Testbench testsJohn Alhroos2010-12-211-2/+107
| | | | svn changeset:16608/svn branch:6.5
* Organized importsArtur Signell2010-11-161-2/+0
| | | | svn changeset:16015/svn branch:6.5
* #4611 add getComponentCount() method for ComponentContainer implementationsHenri Sara2010-10-261-0/+10
| | | | svn changeset:15724/svn branch:6.5
* #5692 Generics: server-side changes for changeVariables() and some component ↵Henri Sara2010-10-041-1/+1
| | | | | | iterators svn changeset:15338/svn branch:6.5
* Formatted using Eclipse Helios / Windows XPArtur Signell2010-08-161-0/+2
| | | | svn changeset:14496/svn branch:6.4
* Added removeTab(Tab) to TabSheet, fixes #5179Marc Englund2010-06-151-0/+26
| | | | svn changeset:13674/svn branch:6.4
* TabSheet: break out of loop earlier when suitable selected component foundHenri Sara2010-05-261-0/+1
| | | | svn changeset:13374/svn branch:6.3
* #4641 Adding the same component multiple times to a TabSheet caused NPEHenri Sara2010-05-261-7/+21
| | | | svn changeset:13373/svn branch:6.3
* #4981 and #4935 TabSheet and Accordion javadoc and one import, no functional ↵Henri Sara2010-05-251-64/+158
| | | | | | change svn changeset:13354/svn branch:6.3