Uses of Class
com.vaadin.shared.ui.grid.DropMode
-
Packages that use DropMode Package Description com.vaadin.shared.ui.grid com.vaadin.ui.components.grid -
-
Uses of DropMode in com.vaadin.shared.ui.grid
Fields in com.vaadin.shared.ui.grid declared as DropMode Modifier and Type Field Description DropMode
GridDropTargetState. dropMode
Stores the drop mode of the drop target Grid.Methods in com.vaadin.shared.ui.grid that return DropMode Modifier and Type Method Description static DropMode
DropMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static DropMode[]
DropMode. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of DropMode in com.vaadin.ui.components.grid
Methods in com.vaadin.ui.components.grid that return DropMode Modifier and Type Method Description DropMode
GridDropTarget. getDropMode()
Gets the drop mode of this drop target.Methods in com.vaadin.ui.components.grid with parameters of type DropMode Modifier and Type Method Description void
GridDropTarget. setDropMode(DropMode dropMode)
Sets the drop mode of this drop target.Constructors in com.vaadin.ui.components.grid with parameters of type DropMode Constructor Description GridDropTarget(Grid<T> target, DropMode dropMode)
Extends a Grid and makes it's rows drop targets for HTML5 drag and drop.GridRowDragger(Grid<T> grid, DropMode dropMode)
Enables DnD reordering the rows in the given grid with the given drop mode.GridRowDragger(Grid<T> source, Grid<T> target, DropMode dropMode)
Enables DnD moving of rows from the source grid to the target grid with the given drop mode.TreeGridDropTarget(TreeGrid<T> target, DropMode dropMode)
Extends a TreeGrid and makes it's rows drop targets for HTML5 drag and drop.
-