com.vaadin.shared.ui.treegrid.
Interface TreeGridDropTargetRpc
-
All Superinterfaces:
public interface TreeGridDropTargetRpc extends ServerRpc
RPC for firing server side drop event when client side drop event happens on drop target TreeGrid.
Since:
8.1
Author:
Vaadin Ltd.
-
-
Method Detail
-
drop
void 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.
Parameters:
types
- list of data types fromDataTransfer.types
objectdata
- map containing all types and corresponding data from theDataTransfer
objectdropEffect
- the desired drop effectrowKey
- key of the row on which the drop event occurreddepth
- depth of the row in the hierarchycollapsed
- whether the target row is collapseddropLocation
- location of the drop within the rowmouseEventDetails
- Mouse event details object containing information about the drop event
-
-