aboutsummaryrefslogtreecommitdiffstats
path: root/uitest
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix scrolling problem in table in Chrome 56+ (#10492)Artur2018-01-052-0/+123
| | | | | | | | * Fix scrolling problem in table in Chrome 56+ Fixes #8707 * Remove commented code
* Prevent killing UI if heartbeats are pending (#10371) (#10450)Olli Tietäväinen2017-12-202-0/+109
| | | | | | | | * Prevent killing UI if heartbeats are pending (#10371) Fixes #9663 * fixed Java 1.8 syntax -> 1.6
* Ensure Upload is properly reset after an upload is interrupted (#9635) (#10457)Anna Koskinen2017-12-202-0/+339
| | | | * Ensure Upload is properly reset after an upload is interrupted (#9635)
* Fix column width resize event firing when mode is SIMPLE (#10452)Adam Wagner2017-12-191-0/+30
|
* Make focus circulate in modal dialog to improve accessibility (#10311)Adam Wagner2017-11-132-2/+8
| | | | | | | | | | | | * 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-132-1/+41
| | | | | | * hand-picked fix to #5043 combobox suggestion popup on scroll * cleanup
* Fix click in subclasses of Grid (#10144)Adam Wagner2017-10-104-0/+73
| | | Add findWidget() method to accept non exact matches.
* Implement error level on client side (#9816)Adam Wagner2017-09-263-2/+335
| | | | | 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-062-2/+42
| | | Closes #7902
* Fix ListSelect scrolling behavior on IE (#9910)Aleksi Hietanen2017-09-041-0/+39
| | | Fixes #9894
* Resize should work within Grid details row (#9799)Ansku2017-08-172-0/+295
| | | Fixes #7341
* Fix occasional empty rows in Table and TreeTable (#9551)mlindfors2017-08-092-0/+87
| | | | | | | | There's an intermittently happening issue with both Table and TreeTable, which results in row data disappearing. This change removes a method which is probably a vestigial one from over five years ago and other changes are handling the things the method used to perform. Currently the method removes rows deemed unnecessary from the row buffer. The problem is, those rows are visible to the user and removing causes row contents to be lost. Also included are manually runnable test cases which demonstrate that this removal actually prevents the issue from happening. Fixes #7964 Fixes #5030
* Added loop and preload attributes for media elements, fixed null poster (#9161)Krassimir Valev2017-08-081-9/+18
| | | | | Fixes #7261 Fixes #5178 Fixes #4409
* Do full connector tracker cleanup when the session lock is released (#9707) ↵Artur2017-08-013-4/+127
| | | | | | | | | | | | | (#9730) As there is no "request end" call after invoking UI.access() from a background thread, the connector map was not earlier properly cleaned afterwards. If you toggled visibility of a component from the background thread, the tracker state became inconsistent. If this becomes a performance problem, it could probably be optimized to that cleanup is done in request end and only at the end of access if not inside a request. Backported from master Fixes #9693
* Clean connector tracker after each access block to stop memory leaks (#9331)Artur2017-05-173-5/+139
| | | | | Immediately clean connectors which the client side does not know about Fixes #9303
* Fix issues in Grid with undefined height (#9118)Teemu Suo-Anttila2017-04-202-0/+87
|
* Fix removing rows over the cached range in Grid Johannes Tuikkala2017-04-202-0/+131
| | | Fixes #8840 for 7.7
* Fix client-side memory leak caused by Grid events (#9062)Aleksi Hietanen2017-04-191-0/+49
| | | | | | Refactors AbstractGridKeyEvent, AbstractGridMouseEvent and their descendants to follow the pattern used in other GWT DomEvents. Fixes #7633
* Fix Flash expanding with percentage sizing (#8552)Olli Tietäväinen2017-03-212-0/+102
| | | | | Allows Flash embed to expand if percentage dimensions given Fixes #4035
* Fix some tests for 7.7Henri Sara2017-03-132-9/+18
|
* Fix Panel.setScrollTop() for large values (#8563)Olli Tietäväinen2017-03-092-0/+103
| | | Fixes #1149
* Fix client-side error when Upload in TabSheet and Push (#8779)Ilia Motornyi2017-03-092-0/+167
| | | | | | | | * 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-074-5/+137
| | | | | | | | | | | | | | * 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
* Fix some tests and update screenshots (#8744)Henri Sara2017-03-061-1/+1
| | | | | | * Update expected Chrome version to 56 * Update screenshots
* Fix absoluteLayoutResizeComponents test for IE8 (#8497)caalador2017-02-082-2/+136
| | | | IE8 handles the sizings differently from other tested browsers so it needs to be tested on 'left: auto' and not wrapper div width.
* Fix toggling of WeekNumbers for PopupDateField. (#8405) (#8469)caalador2017-02-082-0/+169
| | | | Refresh calendar body for show week numbers state change.
* Fix problem with re-opening the popup (#8446) (#8454)caalador2017-02-072-0/+111
| | | | | Fixed problem that disables opening of popup after closing it by clicking the datefield-button.
* Fix the absolute layout component resize positioning tests. (#8456)caalador2017-02-061-17/+45
| | | | * Fix gthe absolute layout component resize positioning tests.
* Fix caption updating in CustomLayout (#8415)Artur2017-02-022-0/+70
| | | Fixes #8413
* Call "destroy" instead of "destory" in JavaScriptRenders (#8263)Artur2017-02-015-3/+95
| | | | | | | | | | | | | | | | | | * 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
* Add method for refreshing all Grid rows (#8406)Artur2017-02-012-1/+46
| | | | | | * Add method for refreshing all Grid rows Fixes #8350
* Prevent reorder of frozen columns when there are hidden columns (#8278)Artur2017-01-301-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | * 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-302-6/+181
| | | Fixes #7880
* Fix absolute layout component sizing on size change in Vaadin7 (#8304)caalador2017-01-232-0/+195
| | | | | | | | 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-3/+20
| | | Fixes #8266
* Fix navigation using keyboard to frozen column when there are hidden columns ↵Artur2017-01-193-5/+24
| | | | (#8277)
* Fix closing of modal window curtains while dragging and resizing (#8281)Aleksi Hietanen2017-01-191-6/+48
| | | Fixes #7496
* Properly end HTML5 drag operations when no drop is performed (#8242)Artur2017-01-191-0/+80
| | | | | | | | * 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-1/+10
| | | | | | * Make it possible to deselect what was selected on the server Fixes #8221
* Reset selected icon when blurring a ComboBox (#8082)Artur2017-01-121-1/+41
| | | | | | | | | | * 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-117-295/+1
| | | | | | | | | | | | * 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-102-0/+70
| | | Fixes #7695
* reopen Grid details on attach, fixes #8015 (#8074)Olli Tietäväinen2017-01-092-0/+83
| | | Fixes #8015
* Render font icon correctly on the 'more' menu item (#8126)Artur2017-01-053-0/+146
| | | | | | * Render font icon correctly on the 'more' menu item Fixes #8125
* Call error handler for exceptions in UI.init() (#8055)Artur2017-01-022-2/+12
| | | Fixes #4995
* Fix chrome version (#8086)Ilia Motornyi2016-12-271-1/+1
| | | | * Fix chrome version
* Fix removal of hidden Grid columns (#8071)Artur2016-12-232-0/+105
| | | Fixes #8018
* Use correct indexes in multiselect checkboxes after removing rows (#8072)Artur2016-12-221-0/+51
| | | Fixes #8011
* Replace non-breaking spaces with space (#7957)Artur2016-12-141-1/+1
|
* Use proper UTF-8 encoding for Content-Disposition filenames (#19527) (#6607)Leif Åstrand2016-12-132-2/+2
|