Package com.vaadin.ui.components.grid
Interface GridDropListener<T>
-
- Type Parameters:
T- The Grid bean type.
- All Superinterfaces:
ConnectorEventListener,EventListener,Serializable,SerializableEventListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface GridDropListener<T> extends ConnectorEventListener
Drop listener for HTML5 drop on a Grid row.- Since:
- 8.1
- Author:
- Vaadin Ltd.
- See Also:
GridDropTarget.addGridDropListener(GridDropListener)
-
-
Field Summary
Fields Modifier and Type Field Description static MethodDROP_METHOD
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddrop(GridDropEvent<T> event)Called when drop event is fired on a Grid row.
-
-
-
Field Detail
-
DROP_METHOD
static final Method DROP_METHOD
-
-
Method Detail
-
drop
void drop(GridDropEvent<T> event)
Called when drop event is fired on a Grid row.- Parameters:
event- Server side drop event.
-
-