Uses of Class
com.vaadin.ui.TreeGrid
-
Packages that use TreeGrid Package Description com.vaadin.ui com.vaadin.ui.components.grid -
-
Uses of TreeGrid in com.vaadin.ui
Methods in com.vaadin.ui that return TreeGrid Modifier and Type Method Description protected TreeGrid<T>
Tree. createTreeGrid()
Create innerTreeGrid
object.static <BEAN> TreeGrid<BEAN>
TreeGrid. withPropertySet(PropertySet<BEAN> propertySet)
Creates aTreeGrid
using a customPropertySet
implementation for creating a default set of columns and for resolving property names withGrid.addColumn(String)
andGrid.Column.setEditorComponent(HasValue)
. -
Uses of TreeGrid in com.vaadin.ui.components.grid
Methods in com.vaadin.ui.components.grid that return TreeGrid Modifier and Type Method Description TreeGrid<T>
TreeGridDropTarget. getParent()
Constructors in com.vaadin.ui.components.grid with parameters of type TreeGrid Constructor Description TreeGridDragSource(TreeGrid<T> target)
Extends a TreeGrid and makes it's rows draggable.TreeGridDropEvent(TreeGrid<T> target, Map<String,String> data, DropEffect dropEffect, DragSourceExtension<? extends AbstractComponent> dragSourceExtension, T dropTargetRow, DropLocation dropLocation, MouseEventDetails mouseEventDetails, Integer depth, Boolean collapsed)
Creates a TreeGrid row drop event.TreeGridDropTarget(TreeGrid<T> target, DropMode dropMode)
Extends a TreeGrid and makes it's rows drop targets for HTML5 drag and drop.
-