aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/Form.java
Commit message (Collapse)AuthorAgeFilesLines
* Moved server files to a server src folder (#9299)Artur Signell2012-08-131-1420/+0
|
* Move classes common to client and server to com.vaadin.shared.* (#8934)Leif Åstrand2012-07-271-1/+1
|
* Add Java 6 @Override annotations to all methods from interfacesLeif Åstrand2012-07-231-0/+19
|
* Call attach only once for children (#9006)Artur Signell2012-06-211-28/+0
|
* Initial extension support (#6690)Leif Åstrand2012-06-061-4/+0
|
* Moved each component to its own package on client sideArtur Signell2012-04-121-1/+1
| | | | | | 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/+3
|
* Fixed spacing that was only partly moved to shared stateArtur Signell2012-04-051-0/+1
|
* Moved Form child component references to stateArtur Signell2012-04-051-54/+50
|
* Replace @ClientWidget with client-side @Component (#8440)Henri Sara2012-04-041-2/+0
|
* Refactor error messages on server side (#8437).Henri Sara2012-03-211-7/+10
| | | | This is an intermediate step towards moving error messages from UIDL to shared state.
* Added requestRepaintall helper to AbstractComponentContainer and use theArtur Signell2012-03-211-0/+4
| | | | | same helper and logic in all component containers including Form, Table and CustomField
* #8500 Properly repaint parent (hierarchy) when the visibility of a childArtur Signell2012-03-211-0/+8
| | | | changes
* #8500 Allow component containers to hide their children even thoughArtur Signell2012-03-141-0/+4
| | | | | the children are visible. Allows Tabsheet to disallow updates to all tabs except the selected.
* #8500 Made Form implement HasComponents to properly support sendingArtur Signell2012-03-141-1/+64
| | | | the component hierarchy
* Renamed Paintable component classes to ConnectorArtur Signell2012-02-281-2/+2
|
* Remove support for Select in multi-select mode (#8169, #8326).Henri Sara2012-02-081-5/+6
| | | | | Also includes some related cleanup as this was the last special case where the widget was selected on the client side based on UIDL fields other than tag.
* #8324 Split Form and FormLayout into widget and paintableArtur Signell2012-01-311-3/+2
|
* Deprecated Form. Use FieldGroup instead.Artur Signell2011-12-231-0/+4
|
* #8173 Deprecated separate read through and write through modesArtur Signell2011-12-221-0/+2
|
* #8026 Removed deprecated FieldFactoryArtur Signell2011-12-191-34/+0
|
* Merge remote branch 'origin/6.8'Leif Åstrand2011-12-091-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-2/+2
| | | | | | | | svn changeset:22317/svn branch:6.7
| * Form and Table now sets property to fields Viewer property if one exists. ↵Matti Tahvonen2011-11-161-2/+28
| | | | | | | | | | | | fixes #7942 svn changeset:22019/svn branch:6.7
* | Merge branch 'master' into databindingHenri Sara2011-12-081-2/+28
|\ \ | | | | | | | | | | | | | | | | | | Conflicts: src/com/vaadin/data/util/PropertyFormatter.java src/com/vaadin/data/validator/CompositeValidator.java tests/testbench/com/vaadin/tests/tickets/Ticket20.java
| * | Merged fixes from 6.7Artur Signell2011-11-251-2/+28
| |/ | | | | | | svn changeset:22132/svn branch:6.8
* | #7930 Eliminate Validator.isValid()Henri Sara2011-11-121-15/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Eliminate the redundant method Validator.isValid(). Validator.validate() does the same but throws an exception including the validation error message. Migration: - replace implementations of isValid() with internalIsValid() in custom subclasses of AbstractValidator - use Validator.validate() and catch exceptions rather than call Validator.isValid() - note that AbstractField still provides an isValid() method that is internally based on validate()
* | Eliminate more Field and Property related raw type warnings.Henri Sara2011-11-111-2/+2
| | | | | | | | Eliminate some more warnings for use of raw types (Field, Property, Class), mostly by changing API method return types.
* | Eliminate some generics related warnings in core (non-API).Henri Sara2011-11-111-22/+22
| | | | | | | | | | Eliminate some (mostly Field and Property related) warnings about raw types etc. No modifications to public API, only inside methods and private API.
* | Change Form.addField() parameter from Field to Field<?>.Henri Sara2011-11-101-2/+2
| |
* | Parameterize Property and Field with the value type.Henri Sara2011-11-081-2/+2
|/ | | | | | | | | | | | | | | | | | | The interfaces Property and Field and most of their implementations are now parameterized with the type of their value. The method getValue() returns the Property type but setValue() takes Object as its parameter. No implicit conversions between value type and strings are performed in most locations (fields). Among others, AbstractTextField, DateField and RichTextArea not have specific value types and do not accept arbitrary values. Most locations requiring migration will be visible as compilation errors, with the exception of some cases where a non-parameterized Property or Field (or one parametrized with Object) is used. Not yet done: - Label - converters - setValue() parameterization (causes much more migration effort)
* Fix for #7626John Alhroos2011-09-231-0/+1
| | | | svn changeset:21264/svn branch:6.7
* added declaration that form commit may throw invalid value exception (RTE, ↵Matti Tahvonen2011-01-071-1/+1
| | | | | | but for documentation purposes like in the super type) svn changeset:16811/svn branch:6.5
* added TODO noteMatti Tahvonen2011-01-051-0/+3
| | | | svn changeset:16804/svn branch:6.5
* formatted javadocMatti Tahvonen2010-11-051-2/+1
| | | | svn changeset:15881/svn branch:6.5
* fixes #5955. A bit more intelligent removal of fields from Form + a method ↵Matti Tahvonen2010-11-051-2/+21
| | | | | | that can be overridden for a custom logic. svn changeset:15880/svn branch:6.5
* Fixed compiler warnings in demo and core source (#2274)Artur Signell2010-10-071-0/+4
| | | | svn changeset:15451/svn branch:6.5
* #5692 Generics: FormHenri Sara2010-10-041-12/+12
| | | | svn changeset:15366/svn branch:6.5
* Formatted using Eclipse Helios / Windows XPArtur Signell2010-08-161-6/+6
| | | | svn changeset:14496/svn branch:6.4
* #5409 Form.focus should focus the first enabled, writable field if possibleHenri Sara2010-08-041-9/+20
| | | | svn changeset:14407/svn branch:6.4
* fixes #5341Matti Tahvonen2010-07-211-0/+6
| | | | svn changeset:14292/svn branch:6.4
* Fixed some high priority warnings by FindBugsHenri Sara2010-06-011-1/+1
| | | | svn changeset:13459/svn branch:6.3
* Javadocced shortcutsMarc Englund2010-04-091-0/+10
| | | | svn changeset:12421/svn branch:6.3
* Corrected some javadocMarc Englund2010-03-241-8/+4
| | | | svn changeset:12054/svn branch:6.3
* Changed visibility of the actionManager, still for #875Marc Englund2010-03-241-1/+1
| | | | svn changeset:12053/svn branch:6.3
* Some API changes for #875 as discussed at length.Marc Englund2010-03-231-16/+31
| | | | svn changeset:12048/svn branch:6.3
* Refactored new actions api a little: removed mnemonics terminology, ↵Marc Englund2010-03-231-2/+1
| | | | | | adding/removing stuff 'returns' void, shift shorthand in now _ svn changeset:12029/svn branch:6.3
* Easier keyboard shortcuts for #875 - includes shorthand notation for ↵Marc Englund2010-03-231-1/+57
| | | | | | ShortcutAction, Form is now handler in addition to Panel, AbstractField.addAction() delegates handling to containing Window. Javadoc and examples TBD svn changeset:12026/svn branch:6.3
* Fix for #3554 - Form.addItemProperty() resets caption created by FieldFactoryArtur Signell2010-03-091-14/+1
| | | | svn changeset:11732/svn branch:6.3
* #2205 Make Form layouting more flexibleArtur Signell2010-02-161-26/+71
| | | | | | | | Split addField into registerField and attachField to allow overriding. Added FormAdvancedLayout sample demonstrating the feature. svn changeset:11326/svn branch:6.3