aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/test/java/com/vaadin/tests/components/treegrid
Commit message (Collapse)AuthorAgeFilesLines
* Fix TreeGrid to use correct super constructor (#10291)Jerome Meyer2017-11-141-0/+6
| | | Fixes #10195
* Use lambda with Listeners (#10222)Ahmed Ashour2017-10-261-2/+2
| | | Also use "event" as the name for events
* Use static import of Assert in tests (#10126)Ahmed Ashour2017-10-031-9/+12
| | | | Also removes dependency on junit.framework.TestCase .
* Fix TreeGrid.getHierarchyColumn to use correct id (#9690)Teemu Suo-Anttila2017-07-181-0/+12
| | | Fixes #9661
* Add isExpanded() method to Tree and TreeGridHenri Sara2017-06-281-0/+2
| | | Fixes #9595
* Allow changing the renderer of hierarchy column in TreeGrid (#9514)Teemu Suo-Anttila2017-06-131-4/+2
| | | Addresses #9465
* Refactor common methods in in-memory data providers (#9308)Aleksi Hietanen2017-05-161-7/+7
| | | | | | * Refactor common methods of InMemoryHierarchicalDataProvider and ListDataProvider to a single interface * Rename HierarchyData and InMemoryHierarchicalDataProvider, introduce HasHierarchicalDataProvider * Additionally adds a helper method for recursive constructing TreeData with a child item provider.
* Add an initial version of Tree component (#9212)Teemu Suo-Anttila2017-05-022-19/+47
| | | | | | | This patch introduces a Tree component, implemented as a Composite using TreeGrid. As initial version of the component, some functionality of the old Tree component has been left out for now. Partly addresses #8617
* Allow changing renderers after column creation (#8841)Teemu Suo-Anttila2017-03-151-0/+19
Closes #8250