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.dnd.
Interface DragSourceRpc
-
All Superinterfaces:
public interface DragSourceRpc extends ServerRpc
RPC for firing server side event when client side dragstart event happens on drag source.
Since:
8.1
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method Description void
dragEnd​(DropEffect dropEffect)
Called when dragend event happens on client side.
void
dragStart()
Called when dragstart event happens on client side.
-
-
-
Method Detail
-
dragStart
void dragStart()
Called when dragstart event happens on client side.
-
dragEnd
void dragEnd​(DropEffect dropEffect)
Called when dragend event happens on client side.
Parameters:
dropEffect
- Drop effect of the dragend event, extracted fromDataTransfer.dropEffect
parameter.
-
-