Drag and Drop
interface DataEditorProps {
onDragLeave?: (() => void);
onDragOverCell?: ((cell: Item, dataTransfer: DataTransfer | null) => void);
onDrop?: ((cell: Item, dataTransfer: DataTransfer | null) => void);
}
onDragLeave
onDragLeave?: (() => void);
Emitted when the external drag event leaves the data editor.
onDragOverCell
onDragOverCell?: ((cell: Item, dataTransfer: DataTransfer | null) => void);
Emitted when the external drag event enters a new cell in the grid.
onDrop
onDrop?: ((cell: Item, dataTransfer: DataTransfer | null) => void);
Emitted when the external drag is dropped onto a valid target inside of the grid.
Last updated
Was this helpful?