Uses of Class
com.vaadin.shared.ui.grid.DropLocation
-
Packages that use DropLocation Package Description com.vaadin.client.connectors.grid com.vaadin.shared.ui.grid com.vaadin.shared.ui.treegrid com.vaadin.ui.components.grid -
-
Uses of DropLocation in com.vaadin.client.connectors.grid
Methods in com.vaadin.client.connectors.grid that return DropLocation Modifier and Type Method Description protected DropLocation
GridDropTargetConnector. getDropLocation(com.google.gwt.dom.client.Element target, com.google.gwt.dom.client.NativeEvent event)
Returns the location of the event within the row. -
Uses of DropLocation in com.vaadin.shared.ui.grid
Methods in com.vaadin.shared.ui.grid that return DropLocation Modifier and Type Method Description static DropLocation
DropLocation. valueOf(String name)
Returns the enum constant of this type with the specified name.static DropLocation[]
DropLocation. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.vaadin.shared.ui.grid with parameters of type DropLocation Modifier and Type Method Description void
GridDropTargetRpc. drop(List<String> types, Map<String,String> data, String dropEffect, String rowKey, DropLocation dropLocation, MouseEventDetails mouseEventDetails)
Called when drop event happens on client side. -
Uses of DropLocation in com.vaadin.shared.ui.treegrid
Methods in com.vaadin.shared.ui.treegrid with parameters of type DropLocation Modifier and Type Method Description void
TreeGridDropTargetRpc. drop(List<String> types, Map<String,String> data, String dropEffect, String rowKey, Integer depth, Boolean collapsed, DropLocation dropLocation, MouseEventDetails mouseEventDetails)
Called when drop event happens on client side. -
Uses of DropLocation in com.vaadin.ui.components.grid
Methods in com.vaadin.ui.components.grid that return DropLocation Modifier and Type Method Description DropLocation
GridDropEvent. getDropLocation()
Get the location of the drop within the row.Constructors in com.vaadin.ui.components.grid with parameters of type DropLocation Constructor Description GridDropEvent(Grid<T> target, Map<String,String> data, DropEffect dropEffect, DragSourceExtension<? extends AbstractComponent> dragSourceExtension, T dropTargetRow, DropLocation dropLocation, MouseEventDetails mouseEventDetails)
Creates a Grid row drop event.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.
-