summaryrefslogtreecommitdiffstats
path: root/uitest
Commit message (Collapse)AuthorAgeFilesLines
* Make all selected rows draggable (#8746)Adam Wagner2017-04-121-1/+15
| | | | Fixes #8397
* Make Grid rows draggable (#8690)Adam Wagner2017-04-121-0/+103
| | | | | | It is possible to customize the drag data for each row. (#8706) Fixes #8396
* Fix initial expand of TreeGrid itemsAleksi Hietanen2017-04-112-0/+51
| | | Fixes #9050
* Make Button component draggable (#9038)Adam Wagner2017-04-101-0/+73
| | | | | | * Make Button component draggable (#9037) * Add own state to button drag source
* Update Chrome version in VerifyBrowserVersionTestAleksi Hietanen2017-04-071-1/+1
|
* Add server-side expand and collapse to TreeGrid (#9021)Aleksi Hietanen2017-04-064-27/+254
| | | | | | | | | | | | | | | | * Add server-side expand and collapse to TreeGrid * Add javadocs * Fix variable naming in TreeGridHugeTreeTest * Fix review comments * Merge remote-tracking branch 'github/master' into 8759-server-expand * Clear pending expands when all data is dropped * Add documentation
* Snapshot version update to 8.1 (#9023)Ilia Motornyi2017-04-051-1/+1
|
* TreeGrid keyboard navigation Ilia Motornyi2017-04-053-31/+300
| | | Fixes #8758
* Correctly set style names for NativeSelect (#9006)Artur2017-04-041-0/+44
| | | Fixes #9005
* Fix Editor not saving values by pressing Enter (#8946)Stephen Wellington2017-04-032-0/+44
| | | Fixes #8945
* Fix column indexing when setting a renderer (#8976)Teemu Suo-Anttila2017-03-302-2/+57
| | | Fixes #8943
* Implement LocalDateRenderer and LocalDateTimeRenderer (#8955)Aleksi Hietanen2017-03-302-0/+97
| | | Closes #8377
* Add Grid.setRowHeight() (#8935)Henri Sara2017-03-294-0/+65
| | | Fixes #8667
* Fix NativeSelect inner component size (#8737)Ilia Motornyi2017-03-283-0/+81
| | | Fixes #8702
* Fix data not being sent again when adding DataGenerators (#8947)Teemu Suo-Anttila2017-03-282-2/+31
| | | | | | * Fix data not being sent again when adding DataGenerators * Fix header component detaching, revert early header cleanup
* Move select all visible to multi selection model interface (#8627)Pekka Hyvönen2017-03-272-2/+2
|
* Added test for removing last row in cachePekka Hyvönen2017-03-272-1/+47
| | | | | This is a test case for #8840 using TreeGrid. Cannot be picked for 8.0.
* Use computed style for Escalator size calculations (#8861)Artur2017-03-272-0/+84
| | | | | | | | | | | | | * Use computed style for Escalator size calculations The old method of using getBoundingClientRect does not work as expected if a transform has been applied to the element or one of its parents. For instance PopupView animates itself using a scale(0) -> scale(1) animation. When scale(0) is active, getBoundingClientRect will return 0 for all sizes while computed style ignores the transform and returns the expected value. Fixes #8793
* Fix infinite loop in data communication (#8927)Aleksi Hietanen2017-03-272-0/+78
| | | | | | | | | | * Fix infinite loop in data communication * Switch to less aggressive reset when data communication is out of sync * Remove triggering of reset if reset is already being performed * Avoid redundant collection of streams in DataCommunicator
* Fix TreeGridBasicFeaturesTest for IE11 (#8933)Ilia Motornyi2017-03-241-0/+6
|
* Improve caching when expanding nodes in hierarchical data (#8902)Teemu Suo-Anttila2017-03-242-0/+79
| | | Fixes #8790
* Clean DropEvent and DragEndEvent properties (#8925)Adam Wagner2017-03-241-4/+2
| | | | | | | | * Add dropEffect parameter to DragEndEvent (#8895) * Remove drop effect from drop event (#8895) * Make sure that drop effect is not null
* Make CloseSessionTest more stable with waitUntil (#8928)Teemu Suo-Anttila2017-03-241-0/+3
|
* Add possibility to configure the content mode of TabSheet tabs (#8920)Aleksi Hietanen2017-03-242-0/+97
| | | Fixes #8590
* Fix default header content changes on init (#8921)Teemu Suo-Anttila2017-03-242-3/+17
| | | | | This patch also enables an old test that was pending #8128 Fixes vaadin/framework8-issues#556
* Add feature to disable collapsing items in TreeGrid (#8879)Teemu Suo-Anttila2017-03-234-5/+131
| | | Fixes #8846
* Fix FlashExpansionTest (#8919)Henri Sara2017-03-231-6/+5
|
* Fix Flash expanding with percentage sizing (#8898)Olli Tietäväinen2017-03-222-0/+93
| | | | | Allows Flash embed to expand if percentage dimensions given Fixes #4035
* Add collapse and expand events to TreeGrid (#8889)Aleksi Hietanen2017-03-212-0/+39
| | | Closes #8760
* Measure TreeGrid performance (#8896)Aleksi Hietanen2017-03-213-16/+198
| | | | | | * Update MemoryIT to report median render and request time * Add TreeGrid and TreeTable performance test UIs Addresses the collapsed cases for #8849, #8850
* Support data-location attribute in CustomLayout (#8866)Henri Sara2017-03-203-0/+90
| | | Fixes #8416
* Add tests for non-compatibility GridTeemu Suo-Anttila2017-03-162-0/+112
|
* Always calculate Escalator max row count the same way (#8740)Artur2017-03-164-2/+180
| | | | | | | | | | | | | | * 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
* ApplicationRunnerServlet to correctly get last modified application (#8852)Ahmed Ashour2017-03-161-2/+1
| | | Also, change README.txt to the correct test port 8888
* Remove unnecessary width calculation on Grid initial render (#8848)Henri Sara2017-03-164-0/+176
| | | | | | Do not calculate column widths unnecessarily, especially for columns with fixed width. Fixes #8678
* Hierarchical data (#8842)Aleksi Hietanen2017-03-166-217/+403
| | | | | | | * Initial HierarchicalDataProvider for TreeGrid * Initial in-memory hierarchical data implementation * TreeGrid declarative support Fixes #8611, Fixes #8620
* Allow changing renderers after column creation (#8841)Teemu Suo-Anttila2017-03-152-0/+153
| | | Closes #8250
* Fix removing rows from the middle of Escalator (#8826)Pekka Hyvönen2017-03-143-1/+44
| | | | | | * Fix removing rows from the middle of Escalator Fixes #8825
* Correct license locationAhmed Ashour2017-03-1410-159/+120
|
* Correctly adjust upload button borders inside a component group (#8817)Artur2017-03-132-0/+97
| | | | * Correctly adjust upload button borders inside a component group
* Fix detach of grid when it contains frozen columns (#8803)Artur2017-03-134-66/+136
| | | | | | * Fix detach of grid when it contains frozen columns Fixes #8748
* Migrate Escalator tests for 8 (#8811)Pekka Hyvönen2017-03-1313-76/+64
| | | | | | * Migrate Escalator tests for 8 Tests require reindeer / base for escalator to render correctly.
* Fix ComboBox popup location on scrolled pages in IE/Firefox Henri Sara2017-03-103-0/+156
| | | Fixes #8778
* Initial implementation of ComponentRenderer for Grid (#8743)Teemu Suo-Anttila2017-03-092-0/+162
| | | | Fixes #8622 Fixes #8623
* Fix Upload and push in TabSheet (#8782)Ilia Motornyi2017-03-092-0/+80
| | | | | Also fixes JSNI calls in compatibility Upload component. Fixes #8728 for the compatibility package
* Avoid double unregister of columns on the client sideArtur Signell2017-03-082-0/+66
| | | | | | | Columns unregister themselves from the grid through removeColumn, also when the whole grid is removed. Fixes #8748
* Fix some generics warnings in EclipseAhmed Ashour2017-03-0813-23/+27
|
* Fix client-side error when Upload in TabSheet and Push Johannes Tuikkala2017-03-072-0/+154
| | | Fixes #8728
* Restore column based width for compatibility selectsTeemu Suo-Anttila2017-03-074-0/+74
|
* Picked all changes from 7.7Teemu Suo-Anttila2017-03-0716-11/+363
| | | | | Synchronises parts of compatibility package code to match 7.7 Picks suitable patches for 8 code as well