We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.shared.ui.grid.
Interface GridDragSourceRpc
-
All Superinterfaces:
public interface GridDragSourceRpc extends ServerRpc
RPC for firing server side drag start and drag end events when the corresponding client side events happen on the drag source Grid.
Since:
8.1
Author:
Vaadin Ltd.
-
-
Method Detail
-
dragStart
void dragStart(List<String> draggedItemKeys)
Called when dragstart event happens on client side.
Parameters:
draggedItemKeys
- Keys of the items in Grid being dragged.
-
dragEnd
void dragEnd(DropEffect dropEffect, List<String> draggedItemKeys)
Called when dragend event happens on client side.
Parameters:
dropEffect
- Drop effect of the dragend event, extracted fromDataTransfer.dropEffect
parameter.draggedItemKeys
- Keys of the items in Grid having been dragged.
-
-