aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/terminal/gwt/client/VCaption.java
Commit message (Collapse)AuthorAgeFilesLines
* Moved client files to a client src folder (#9299)Artur Signell2012-08-131-595/+0
|
* Move classes common to client and server to com.vaadin.shared.* (#8934)Leif Åstrand2012-07-271-0/+2
|
* Tooltips are now handled by the connector and not the widget (#8425)Sami Viitanen2012-06-281-5/+22
|
* Removed unnecessary deprecated getConnectorId methods. Artur Signell2012-03-271-2/+1
| | | | Renamed Paintable -> Connector.
* #8437 Error indicators in tabs work againArtur Signell2012-03-221-17/+18
|
* Remove UIDL parameter from many caption related methods (#8435).Henri Sara2012-03-211-33/+27
| | | | | 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/+9
| | | | | 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-5/+5
|
* Refactor error messages not to use UIDL (#8437).Henri Sara2012-03-211-27/+5
| | | | This change removes support for error messages on tabs of a tabsheet or an accordion. Those should be implemented differently if needed.
* Refactor error messages on server side (#8437).Henri Sara2012-03-211-4/+4
| | | | This is an intermediate step towards moving error messages from UIDL to shared state.
* Corrected icon check for TabSheet captionsArtur Signell2012-03-151-3/+6
|
* Moved styles list to shared state, replacing the previous String hack.Artur Signell2012-03-141-3/+2
|
* Fixed readonly handling for fields (depends on property readonlyArtur Signell2012-03-131-1/+1
| | | | status) and enable state handling for components on client side (depend on parent)
* #8510 Support using Resources through URLReference/ResourceReference inArtur Signell2012-03-131-10/+6
| | | shared state and RPC calls
* Use ComponentState for storing the state, not just as a communicationArtur Signell2012-03-131-1/+1
| | | | mechanism. Changed isDisabled to more logical isEnabled in state.
* Organized imports and formatted all java filesArtur Signell2012-02-281-2/+3
|
* Renamed Paintable component classes to ConnectorArtur Signell2012-02-281-2/+2
|
* #8434 Renamed *Paintable classes to *Connector and updated ConnectorMapArtur Signell2012-02-271-19/+19
| | | accordingly
* getWidgetForPaintable -> getWidgetArtur Signell2012-02-271-2/+1
|
* Merge branch 'layoutperformance'Leif Åstrand2012-02-271-15/+6
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ApplicationConnection.java src/com/vaadin/terminal/gwt/client/Util.java src/com/vaadin/terminal/gwt/client/VCaption.java src/com/vaadin/terminal/gwt/client/ui/VAbstractPaintableWidget.java src/com/vaadin/terminal/gwt/client/ui/VFormLayout.java src/com/vaadin/terminal/gwt/client/ui/VGridLayout.java src/com/vaadin/terminal/gwt/client/ui/VGridLayoutPaintable.java src/com/vaadin/terminal/gwt/client/ui/VOrderedLayoutPaintable.java src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java src/com/vaadin/terminal/gwt/client/ui/VTabsheet.java src/com/vaadin/terminal/gwt/client/ui/layout/CellBasedLayoutPaintable.java src/com/vaadin/terminal/gwt/client/ui/layout/ChildComponentContainer.java
| * Avoid captions wrapping over multiple rows (#8313)Leif Åstrand2012-02-171-10/+0
| |
* | Communicate caption of components in shared state (#8304).Henri Sara2012-02-231-52/+143
| |
* | Communicate component description (tooltip) in shared state (#8304).Henri Sara2012-02-231-3/+1
| |
* | Communicate disabled flag in shared state (#8304).Henri Sara2012-02-231-5/+4
| |
* | Communicate component style names in shared state (#8304).Henri Sara2012-02-231-16/+60
| |
* | Convert some literal strings of UIDL attributes to use constants.Henri Sara2012-02-211-33/+43
|/
* Split Paintable from Widget so we have VPaintable (paintable without anyArtur Signell2012-01-221-5/+6
| | | Widget), VPaintableWidget (paintable connected to a widget).
* Split Paintable handling from ApplicationConnection to PaintableMap.Artur Signell2012-01-201-1/+1
|
* Merge remote branch 'origin/6.8'Leif Åstrand2011-12-091-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/com/vaadin/Application.java src/com/vaadin/data/Property.java src/com/vaadin/data/util/PropertyFormatter.java src/com/vaadin/terminal/ParameterHandler.java src/com/vaadin/terminal/URIHandler.java src/com/vaadin/terminal/gwt/client/HistoryImplIEVaadin.java src/com/vaadin/terminal/gwt/client/ui/layout/ChildComponentContainer.java src/com/vaadin/terminal/gwt/server/ApplicationPortlet.java src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java src/com/vaadin/ui/Field.java src/com/vaadin/ui/LoginForm.java src/com/vaadin/ui/UriFragmentUtility.java
| * #7354 IT Mill -> Vaadin find and replaceArtur Signell2011-12-081-1/+1
| | | | | | | | svn changeset:22317/svn branch:6.7
* | #7912 Remove support for IE6Leif Åstrand2011-11-091-9/+1
|/
* Code cleanup: Use constant instead of "v-disabled" stringArtur Signell2011-07-181-1/+1
| | | | svn changeset:19824/svn branch:6.7
* Merged bugfixes from 6.5Artur Signell2011-03-291-1/+1
| | | | svn changeset:18006/svn branch:6.6
* #5613 Converted our own client side code to use VConsole instead of ↵Matti Tahvonen2010-09-171-3/+1
| | | | | | ApplicationConnection.getConsole svn changeset:14989/svn branch:6.4
* fixes #3955, an element used by VCaption now styled in base theme instead of ↵Matti Tahvonen2010-08-311-6/+5
| | | | | | hardcoded in gwt code svn changeset:14674/svn branch:6.4
* Formatted using Eclipse Helios / Windows XPArtur Signell2010-08-161-2/+1
| | | | svn changeset:14496/svn branch:6.4
* Additional fix for #3846 - Do not add an extra   if there is an icon, ↵Artur Signell2010-04-091-8/+18
| | | | | | an error or required indicator svn changeset:12412/svn branch:6.3
* Fix for #3846 - Empty string as a caption in VOrderedLayout uses space in ↵Artur Signell2010-04-081-4/+17
| | | | | | IE6&7 but not in other browsers svn changeset:12373/svn branch:6.3
* Removed unnecessary "px" units after 0 widths and heights.Jouni Koivuviita2009-12-141-4/+4
| | | | svn changeset:10276/svn branch:6.2
* added null checkMatti Tahvonen2009-11-261-1/+3
| | | | svn changeset:10074/svn branch:6.2
* Fixed remaining issues for #3541 - ↵Artur Signell2009-11-261-0/+17
| | | | | | VerticalLayout/GridLayout/AbsoluteLayout/CSSLayout should support click events svn changeset:10072/svn branch:6.2
* Merged fix for #3701 - "Caption causes occasional clipping in Firefox"Artur Signell2009-11-121-4/+4
| | | | svn changeset:9755/svn branch:6.2
* Fix for #2997 - Add API for registering tooltips for any element in the DOM treeArtur Signell2009-05-211-6/+6
| | | | svn changeset:7940/svn branch:6.0
* #2904 Renamed CSS prefix "i-" to "v-"Henri Sara2009-05-121-5/+5
| | | | svn changeset:7752/svn branch:6.0
* #2904 Change client side class name prefixes I -> V (class names only, not ↵Henri Sara2009-05-111-0/+443
yet CSS prefixes) svn changeset:7742/svn branch:6.0