summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove broken changelog section for release notes and related code8.0.0.alpha2Artur Signell2016-09-143-218/+4
| | | | Change-Id: I1e35dcbe4f75cb8b21a7c2a78143556522f32363
* Update @since tags for 8.0Henri Sara2016-09-146-11/+11
| | | | Change-Id: Iec8a81424e1cae9c3dc6c760732e0d48c4a38af2
* Implement support for binding multi-select componentsLeif Åstrand2016-09-148-70/+474
| | | | | | | Also updates ComponentTest.getRpcProxy to use an approach that doesn't require the component to be attached to a UI. Change-Id: Iab4603a7818cd0fd2a3410660b90a2a839fb8a76
* Selection should be updated each time when new data is set (#244).Denis Anisimov2016-09-143-4/+79
| | | | | | | There is no order in two actions: set data source and selection. So selection should always be saved to update the index once data is set. Change-Id: I074d99adb1f11bf29ebaef50979d4cacda5cd1e4
* DataSource.refreshAll() for notifying components to reload (#233).Denis Anisimov2016-09-1414-22/+715
| | | | | | | The method refreshAll() fires an event which is handled by UI components to reload their content. Change-Id: Ibbbe1f24b08ed883f0dda93c3ff6f05f380e9eaa
* Use state for ComboBox selectionHenri Sara2016-09-145-73/+23
| | | | Change-Id: I612376b4030a750c987ba2d8016a4dc44bc02d41
* Convert ComboBox to inherit AbstractSingleSelectHenri Sara2016-09-143-102/+64
| | | | | | | ComboBoxState now inherits AbstractSingleSelectState, but still effectively communicates its selection via RPC. Change-Id: I47b6a73f275e0c4c63d70d2c2c8badc95a218157
* Implement support for binding single-select componentsJohannes Dahlström2016-09-145-24/+259
| | | | Change-Id: I340e802e5c8e6e036b54f81ec46beeb5e1c34329
* Split Binder tests roughly by categoryJohannes Dahlström2016-09-145-1194/+1303
| | | | Change-Id: I7c1a55bd68097819e8091533df7232271af689c3
* Add multi selection support to CheckBoxGroupLeif Åstrand2016-09-1410-123/+471
| | | | | | | | This patch adds multi selection support only for CheckBoxGroup without even trying to generalize anything. Adopting the concepts to work with other components will be done separately. Change-Id: Id4ccd2c743b74cb022dc9dfd8cd8dae3bf8f0c54
* Utility functions for helping to use elemental.json with Java 8Artur Signell2016-09-143-0/+453
| | | | Change-Id: I7c3cf7be95eaf451be806cb75b7b2a34fc534deb
* Create a CheckBoxGroup that replaces the multi select case of OptionGroupelmot2016-09-1310-0/+886
| | | | Change-Id: I250c60741bc65443b66498a8d0b17541edb77bf1
* Fix invalid javadoc in ListDataSourcePekka Hyvönen2016-09-131-3/+11
| | | | Change-Id: I71e808554d10657ead61271c1c5cc76981214ee3
* Fix binder.load to reset validation status in the endPekka Hyvönen2016-09-132-1/+43
| | | | | | | Otherwise any validation triggered by field value changes listeners would cause errors to be visible after loading a new bean. Change-Id: I741529f491ae6b36ff2a9aa4326c394cc12fb320
* Fix inconsistent API naming in Binder and remove unused handlerPekka Hyvönen2016-09-1313-203/+154
| | | | | | Mostly based on comments on a previous patch that was merged. Change-Id: I146995853b3318d89061f1d06ab4bbd859168661
* Make ComboBoxConnector extend AbstractListingConnectorHenri Sara2016-09-132-17/+11
| | | | Change-Id: I146b13d99b77beb2cf99019c5878b26f61b69b6c
* Remove unused state flag in AbstractFieldStateHenri Sara2016-09-132-6/+0
| | | | Change-Id: Ia7542be3b73eb4932cc3f2324e1da098a9844a4a
* Clear binder errors after load/bindPekka Hyvönen2016-09-134-3/+135
| | | | | | | Adds an unresolved validation status to make it possible to clear visible field validation errors, even if status is not yet valid. Change-Id: I227a8802b6a71be1533dc903bad1a8e2faef5ed2
* Add context event support to new GridArtur Signell2016-09-135-42/+188
| | | | Change-Id: I21c5bb95feb3dbab1b543943adc0584aa8eec87b
* Change ColorPicker to use new ComboBoxArtur Signell2016-09-1328-99/+86
| | | | | | | ColorPicker is moved back to vaadin-server now that it no longer requires any old components Change-Id: Iebb34cc0724a4bba6eff53073400e803d9ffddd1
* Remove Vaadin 6 DefaultWidgetSetArtur Signell2016-09-131-9/+0
| | | | Change-Id: I41a509c5a1dbb4388f11517dd62894ad2713f9aa
* Refactor Binder Status Handling APIPekka Hyvönen2016-09-1215-640/+886
| | | | | | | | | | | BinderStatusHandler is now triggered only once per validation. Unified ValidationError and BinderResult into BinderValidationStatus. Renamed ValidationStatusChangeEvent into ValidationStatus. Unified handler names for validation status. Next patch will fix resetting of field errors on reset. Change-Id: I9536d554d781fe599fbd7e5bcb5a9ffebe675ca0
* Extract single select stuff to its own test UILeif Åstrand2016-09-123-38/+61
| | | | Change-Id: I12e42e91ea6e82fb8d5b8ce9a23dd8600c467056
* Merge update and migration section of release notesArtur Signell2016-09-121-85/+56
| | | | | | Also fixes some typos and outdated information Change-Id: Ic2f1f33b84ad3cb658ee9f4228444c35489e72ef
* Support finding components in v7 packages with ComponentLocatorTeemu Suo-Anttila2016-09-12226-567/+317
| | | | Change-Id: I60eabf3b1c6363be505a2d21f7ed439c5357f61f
* Fix indices in GridSortingTestTeemu Suo-Anttila2016-09-121-5/+5
| | | | Change-Id: I0540452fcabb37b12549ac5c0b2502f9eacc827b
* Update ComboBox for new DataSource and communication mechanismHenri Sara2016-09-1299-908/+4692
| | | | | | | | This simplifies the client side state machine. This change does not modify the CSS class name v-filterselect. Change-Id: I2f4a6e5252045cb7698d582be90693e00961b342
* Add hasChanges to BinderAleksi Hietanen2016-09-122-2/+60
| | | | Change-Id: Id308bd9b08973804e61706192c96118fd6446d3f
* Add selection support to NativeSelectJohannes Dahlström2016-09-126-20/+125
| | | | Change-Id: Iabe563852150a7d690f6e2edaa40253d03127881
* Update NativeSelect to use DataSource, extend AbstractListingJohannes Dahlström2016-09-128-6/+452
| | | | | | Selection and focus/blur support not yet implemented. Change-Id: I76752084442216e60055d93367475c1c0a612787
* Move old NativeSelect UI tests to compatibility packageJohannes Dahlström2016-09-125-5/+7
| | | | Change-Id: I7d426de488747ce323e732f7ad45d30712fc6d61
* Remove unused SingleSelectionJohannes Dahlström2016-09-124-442/+2
| | | | Change-Id: I33afc94a581d77984f459b0cbd0ff7fe49df8e79
* Use fully qualified name for bundlesArtur Signell2016-09-122-3/+3
| | | | | | | Fixes problem with two LAZY connectors not being able to have the same simple class name. Change-Id: I97970979884c99162d52718449dc18f10e955e32
* Update server and browser support in release notesArtur Signell2016-09-121-13/+9
| | | | Change-Id: I73279f7837b0907fea6cfc9d21076ac226af4c00
* Reimplement Grid selection model in terms of AbstractSingleSelectionJohannes Dahlström2016-09-125-25/+79
| | | | Change-Id: Id21cb0df32e07bd01f90a29a814dcf0775067bfa
* Implement new RichTextAreaArtur Signell2016-09-1273-404/+2103
| | | | Change-Id: I6f430c77caaad6d610133f340eba960f2268897e
* Add AbstractSingleSelection base classJohannes Dahlström2016-09-122-29/+304
| | | | | | | | Uses RPC for client-to-server but leaves server-to-client to implementation. SimpleSingleSelection uses shared state; lazy-loading implementations to pass selection info along with item data. Change-Id: I97c1dfa28eee39aef43eabbfbac56cd83fa5747c
* Add ItemClick events to GridTeemu Suo-Anttila2016-09-124-3/+206
| | | | Change-Id: I9d761245e99cde62d0e56b89e5cbb0398fd4c363
* Add a simple non-connector single selection modelJohannes Dahlström2016-09-125-55/+307
| | | | | | To eventually replace SingleSelection. Change-Id: I623dfa962bce62067a5b35dc14be26b3de333e9b
* Make sleep in tests throw RuntimeException to avoid try catchesArtur Signell2016-09-097-33/+11
| | | | Change-Id: I7ef3cca8271ae9f725d8530793543253c216e6bc
* Format project pom files using correct settings (4 spaces)Artur Signell2016-09-0917-3072/+3104
| | | | Change-Id: I4b4760949897d2755da26a06f9048a596abdf0b6
* Add Vaadin7Widgetset metadata to manifest8.0.0.alpha1Artur Signell2016-09-091-0/+17
| | | | Change-Id: I8619553a03cf3354fe3fa90ea15fca111047a287
* Migrate ClickableRenderer and subclassesAleksi Hietanen2016-09-0918-39/+730
| | | | Change-Id: I233250d9b68052825b73bed0288fffeaf5bdd04b
* Send TextField value to server on flush()Artur Signell2016-09-091-0/+6
| | | | | | This seems to have been dropped from the new TextField patch and is needed e.g. for shortcut handlers to send the value before invoking the shortcut Change-Id: Icb0fb45c8d28fad90f13f958cbc5970cdb0fd54a
* Include compatibility packages in vaadin-all ZIPHenri Sara2016-09-082-0/+28
| | | | Change-Id: Id4d97ae130d1267acf7cb1acb4e60746643fab57
* Delete broken stylesheet and revert to default style until a newHenri Sara2016-09-082-238/+1
| | | | | | stylesheet is created Change-Id: I25da6154d55ab829d1166bbde5075bacaf62bf26
* Remove unused commit author fetching from build.Henri Sara2016-09-083-130/+0
| | | | Change-Id: I36faa94382258d5df40c7f200e5c24805896f100
* Add Form level status handler and status labelPekka Hyvönen2016-09-088-38/+628
| | | | | | | This feature doesn't make a whole lot of sense until form level status changes are available. Change-Id: Ie634c4a6b3511b7cbf9e367192034934b0e0d4b0
* Add DescriptionGenerators for Grid and ColumnsTeemu Suo-Anttila2016-09-084-2/+212
| | | | Change-Id: Ib32726ba3297a05cbc05898f37579777b9a921e0
* Add StyleGenerators for Grid and ColumnsTeemu Suo-Anttila2016-09-086-15/+337
| | | | Change-Id: I5eedce6ac24381d657357ff07ca1ccedd804158d