summaryrefslogtreecommitdiffstats
path: root/client
Commit message (Collapse)AuthorAgeFilesLines
* added missing javadocs and since tags (#10315)7.7.12Olli Tietäväinen2017-11-133-6/+26
| | | | | | * added missing javadocs and since tags * fix formatting of javadocs
* Make focus circulate in modal dialog to improve accessibility (#10311)Adam Wagner2017-11-134-26/+228
| | | | | | | | | | | | * Make focus circulate in modal dialog to improve accessibility (#10260) Make focus circulate in modal dialog to improve accessibility * Backport window order event * Correct since tag * Correct copyright header
* hand-picked fix to #5043 combobox suggestion popup on scroll (#10307)Olli Tietäväinen2017-11-131-8/+71
| | | | | | * hand-picked fix to #5043 combobox suggestion popup on scroll * cleanup
* Add missing @since tags and missing javadocs (#10155)7.7.11Olli Tietäväinen2017-10-105-21/+52
|
* Fix click in subclasses of Grid (#10144)Adam Wagner2017-10-109-18/+75
| | | Add findWidget() method to accept non exact matches.
* Implement error level on client side (#9816)Adam Wagner2017-09-2620-24/+303
| | | | | Add additional class names and style to components and error indicators to distinguish different error levels. Vaadin 7 solution for #3139
* Fix invalid user visible value in ComboBox (#8115)Matti Tahvonen2017-09-061-1/+1
| | | Closes #7902
* Fix ListSelect scrolling behavior on IE (#9910)Aleksi Hietanen2017-09-041-0/+7
| | | Fixes #9894
* Resize should work within Grid details row (#9799)Ansku2017-08-172-4/+82
| | | Fixes #7341
* Use separate identifier for push connections (#9150)Olli Tietäväinen2017-08-102-22/+42
| | | | | | By using a separate id we can avoid sending the sessions CSRF token as a GET parameter when initializing a push connection. Cherry-picked from #8700 to the 7.7 branch.
* Added loop and preload attributes for media elements, fixed null poster (#9161)Krassimir Valev2017-08-083-1/+39
| | | | | Fixes #7261 Fixes #5178 Fixes #4409
* Add missing @since tags for 7.7.97.7.10Olli Tietäväinen2017-06-125-0/+30
|
* Fix issues in Grid with undefined height (#9118)Teemu Suo-Anttila2017-04-201-8/+20
|
* Fix removing rows over the cached range in Grid Johannes Tuikkala2017-04-201-1/+9
| | | Fixes #8840 for 7.7
* Fix client-side memory leak caused by Grid events (#9062)Aleksi Hietanen2017-04-197-71/+176
| | | | | | Refactors AbstractGridKeyEvent, AbstractGridMouseEvent and their descendants to follow the pattern used in other GWT DomEvents. Fixes #7633
* Fix calendar dateclick does not work when in readonly mode (#9065)davidef2017-04-191-1/+1
| | | Fixes #4967
* Add @since tags for 7.7.8 (#8954)7.7.8Henri Sara2017-03-271-1/+1
| | | | Add @since tags to VFlash and ApplicationConstants
* Fix Flash expanding with percentage sizing (#8552)Olli Tietäväinen2017-03-212-8/+107
| | | | | Allows Flash embed to expand if percentage dimensions given Fixes #4035
* Fix Panel.setScrollTop() for large values (#8563)Olli Tietäväinen2017-03-091-0/+7
| | | Fixes #1149
* Fix client-side error when Upload in TabSheet and Push (#8779)Ilia Motornyi2017-03-091-4/+6
| | | | | | | | * Fix client-side error when Upload in TabSheet and Push Fixes #8728 * Merge 7.7 into 7.7-upload-in-tab-exception-fix
* Always calculate Escalator max row count the same way (#8740)Artur2017-03-071-13/+19
| | | | | | | | | | | | | | * Rename getMaxEscalatorRowCapacity to describe what it does * Always calculate Escalator max row count the same way This changes Escalator to not take a horizontal scrollbar into account when trying to determine "maximum visible rows". This will add another row, compared to previous versions, when there is a horizontal scrollbar. In reality, it would likely make sense to always add 10 more rows to have some buffer above and below the visible area. Fixes #8661
* Remove unnecessary full classnames and parenthesis from code (#8681)Teemu Suo-Anttila2017-03-0220-111/+68
| | | This change aims to reduce the number of false positives when comparing Vaadin 7 compatibility package in Vaadin 8 and actual Vaadin 7.7 branch. Conflicting parts are moved to imports as much as possible. Files have been formatted with same Eclipse version.
* Enable long tap emulation on iOS for context clicks (#8565) (#8570)Teemu Suo-Anttila2017-02-151-1/+1
| | | Fix release notes mention of context click events
* Fix toggling of WeekNumbers for PopupDateField. (#8405) (#8469)caalador2017-02-081-0/+5
| | | | Refresh calendar body for show week numbers state change.
* Update missing since tags for 7.7.7 (#8474)7.7.7Pekka Hyvönen2017-02-072-0/+4
| | | | * Add missing since tags for 7.7.7
* Fix problem with re-opening the popup (#8446) (#8454)caalador2017-02-071-5/+7
| | | | | Fixed problem that disables opening of popup after closing it by clicking the datefield-button.
* Fix caption updating in CustomLayout (#8415)Artur2017-02-021-5/+7
| | | Fixes #8413
* Call "destroy" instead of "destory" in JavaScriptRenders (#8263)Artur2017-02-011-4/+19
| | | | | | | | | | | | | | | | | | * Call "destroy" instead of "destory" in JavaScriptRenders For backwards compatibility, calls "destory" if no "destroy" exists Fixes #8162 * Merge branch '7.7' into _js-renderer-destory * Merge branch '7.7' into _js-renderer-destory * Merge branch '7.7' into _js-renderer-destory * Merge branch '7.7' into _js-renderer-destory * Merge branch '7.7' into _js-renderer-destory
* Use an actually transparent 1x1 image (#8407)Artur2017-02-011-1/+1
| | | Fixes #8348
* Prevent reorder of frozen columns when there are hidden columns (#8278)Artur2017-01-301-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | * Rename variables to indicate whether they use DOM index or Grid index Grid indexes include hidden columns, DOM/Escalator indexes do not * Prevent reorder of frozen columns when there are hidden columns Fixes #8265 * Merge branch '7.7' into _grid-no-reorder-of-frozen-columns * Merge branch '7.7' into _grid-no-reorder-of-frozen-columns * Merge branch '7.7' into _grid-no-reorder-of-frozen-columns * Merge branch '7.7' into _grid-no-reorder-of-frozen-columns * Merge branch '7.7' into _grid-no-reorder-of-frozen-columns * Merge branch '7.7' into _grid-no-reorder-of-frozen-columns * Merge branch '7.7' into _grid-no-reorder-of-frozen-columns
* Make it possible to disallow user selection in Grid (#8144)Artur2017-01-309-6/+216
| | | Fixes #7880
* Fix absolute layout component sizing on size change in Vaadin7 (#8304)caalador2017-01-231-0/+4
| | | | | | | | Changing from relative to defined size leaves the component positioned wrong, also changing from defined size to relative size leaves the component in the wrong position with the wrong size. Change makes the wrapper rerun setChildWidgetPosition() that adds/removes necessary css definitions to/from the cssPosition String.
* Flush the correct editor widget if there are hidden columns (#8276)Artur2017-01-201-2/+2
| | | Fixes #8266
* Fix navigation using keyboard to frozen column when there are hidden columns ↵Artur2017-01-191-3/+1
| | | | (#8277)
* Fix closing of modal window curtains while dragging and resizing (#8281)Aleksi Hietanen2017-01-191-0/+2
| | | Fixes #7496
* Rename variables to indicate whether they use DOM index or Grid index (#8275)Artur2017-01-192-51/+55
|
* Properly end HTML5 drag operations when no drop is performed (#8242)Artur2017-01-191-0/+1
| | | | | | | | * Properly end HTML5 drag operations when no drop is performed No auto test because of https://github.com/SeleniumHQ/selenium/issues/1365 Fixes #4060
* Make it possible to deselect what was selected on the server (#8235)Artur2017-01-131-2/+8
| | | | | | * Make it possible to deselect what was selected on the server Fixes #8221
* Reset selected icon when blurring a ComboBox (#8082)Artur2017-01-121-5/+43
| | | | | | | | | | * Reset selected icon when blurring a ComboBox Fixes #8073 * Merge branch '7.7' into _combobox-icon-reset-selection * Merge branch '7.7' into _combobox-icon-reset-selection
* Remove tracking of unregistered connectors (#8153)Aleksi Hietanen2017-01-112-24/+8
| | | | | | | | | | | | * Remove tracking of unregistered connectors * Merge branch '7.7' into 8111-remove-unregistered-connector-tracking * Merge branch '7.7' into 8111-remove-unregistered-connector-tracking * Add tests that verify markAsDirty is called on old parent * Merge branch '7.7' into 8111-remove-unregistered-connector-tracking
* Fix exception when Grid is inside a PopupView (#8157)Artur2017-01-101-3/+8
| | | Fixes #7695
* reopen Grid details on attach, fixes #8015 (#8074)Olli Tietäväinen2017-01-091-0/+8
| | | Fixes #8015
* Render font icon correctly on the 'more' menu item (#8126)Artur2017-01-051-7/+6
| | | | | | * Render font icon correctly on the 'more' menu item Fixes #8125
* Fix removal of hidden Grid columns (#8071)Artur2016-12-231-2/+8
| | | Fixes #8018
* Use correct indexes in multiselect checkboxes after removing rows (#8072)Artur2016-12-223-25/+38
| | | Fixes #8011
* Replace non-breaking spaces with space (#7957)Artur2016-12-142-2/+2
|
* Fix java packaging order (#106)Teemu Suo-Anttila2016-12-091-1/+1
| | | Closes vaadin/archetypes#113
* Move Grid event handlers to a list, add method to add custom handlers (#76)7.7.6Aleksi Hietanen2016-12-052-200/+286
| | | | | | | | * Move Grid event handlers to a list, add method to add custom handlers Change-Id: I2fe67ae961bfb0f7c44ba704346762a0faf6da2c * Merge branch '7.7' into grid-event-refactoring
* Refactor Grid event handling methods to instances of a handler interfaceJohannes Dahlström2016-12-011-127/+176
| | | | Change-Id: Icbed14cbef14c434f1909fa0350cb0364235c774
* Start client-side Grid DOM event handling refactorJohannes Dahlström2016-12-011-16/+33
| | | | Change-Id: I67dad4cfbd6e9e355c48703253ff3d6da00e4eef