Package com.smartgwt.client.widgets
Interface DragDataCustomizer
public interface DragDataCustomizer
-
Method Summary
Modifier and TypeMethodDescriptionRecord[]
getDragData
(DataBoundComponent source) During a drag-and-drop interaction, this method returns the set of records being dragged out of the component.
-
Method Details
-
getDragData
During a drag-and-drop interaction, this method returns the set of records being dragged out of the component. In the default implementation, this is the list of currently selected records.This method is consulted by
willAcceptDrop()
.- Parameters:
source
- source component from which the records will be transferred- Returns:
- Array of
Record
s that are currently selected.
-