Uses of Class
com.vaadin.ui.dnd.DragSourceExtension
-
Packages that use DragSourceExtension Package Description com.vaadin.ui com.vaadin.ui.components.grid com.vaadin.ui.dnd.event -
-
Uses of DragSourceExtension in com.vaadin.ui
Methods in com.vaadin.ui that return DragSourceExtension Modifier and Type Method Description DragSourceExtension<? extends AbstractComponent>
UI. getActiveDragSource()
Gets the drag source of an active HTML5 drag event.Methods in com.vaadin.ui with parameters of type DragSourceExtension Modifier and Type Method Description void
UI. setActiveDragSource(DragSourceExtension<? extends AbstractComponent> extension)
Sets the drag source of an active HTML5 drag event. -
Uses of DragSourceExtension in com.vaadin.ui.components.grid
Subclasses of DragSourceExtension in com.vaadin.ui.components.grid Modifier and Type Class Description class
GridDragSource<T>
Makes a Grid's rows draggable for HTML5 drag and drop functionality.class
TreeGridDragSource<T>
Makes a TreeGrid's rows draggable for HTML5 drag and drop functionality.Constructors in com.vaadin.ui.components.grid with parameters of type DragSourceExtension 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. -
Uses of DragSourceExtension in com.vaadin.ui.dnd.event
Methods in com.vaadin.ui.dnd.event that return types with arguments of type DragSourceExtension Modifier and Type Method Description Optional<DragSourceExtension<? extends AbstractComponent>>
DropEvent. getDragSourceExtension()
Returns the extension of the drag source component if the drag originated from a component in the same UI as the drop target component, or an empty optional.Constructors in com.vaadin.ui.dnd.event with parameters of type DragSourceExtension Constructor Description DropEvent(T target, Map<String,String> data, DropEffect dropEffect, DragSourceExtension<? extends AbstractComponent> dragSourceExtension, MouseEventDetails mouseEventDetails)
Creates a server side drop event.
-