com.vaadin.flow.component.dnd.
Class DragStartEvent<T extends Component>
Type Parameters:
T
- Type of the component that is dragged.
All Implemented Interfaces:
HTML5 drag start event, fired when the user starts dragging a drag source.
Since:
2.0
Author:
Vaadin Ltd, Vaadin Ltd
See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the drag source component where the dragstart event occurred.
void
setDragData
(Object data) Set server side drag data for this started drag operation.
Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListener
Methods inherited from class java.util.EventObject
toString
-
Constructor Details
-
DragStartEvent
Creates a drag start event.
Parameters:
source
- Component that is dragged.fromClient
-true
if the event originated from the client side,false
otherwise
-
-
Method Details
-
getComponent
Returns the drag source component where the dragstart event occurred.
Returns:
Component which is dragged.
-
setDragData
Set server side drag data for this started drag operation. This data is available in the drop event and can be used to transfer data between drag source and
DropTarget
if they are in the same UI.This method is a shorthand for
DragSource.setDragData(Object)
and overrides any previously set drag data.Parameters:
data
- Data to transfer to drop event.See Also:
-