Interface DropCompleteHandler
- All Superinterfaces:
EventHandler
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onDropComplete
(DropCompleteEvent event) Notification method fired whenever a drop operation or {@link com.smartgwt.client.widgets.DataBoundComponent.transferSelectedData()} targeting this component completes.
-
Method Details
-
onDropComplete
Notification method fired whenever a drop operation or {@link com.smartgwt.client.widgets.DataBoundComponent.transferSelectedData()} targeting this component completes. A drop is considered to be complete when all the client-side transfer operations have finished. This includes any server turnarounds Smart GWT needs to make to check for duplicate records in the target component; it specifically does not include any add or update operations sent to the server for databound components. If you want to be notified when the entire drag operation - including server updates and cache synchronization - has completed, add aDragCompleteHandler
to the source component.- Parameters:
event
- the event
-