DroppableOptions
Interface
Represents the configuration object type of the Droppable component and useDroppable hook.
Definition
Package:@progress/kendo-react-common
Properties
context?
Context<{ drag?: null | RefObject<null | DragTarget>; setDrag?: (value: null | RefObject<DragTarget>) => void; drop?: null | RefObject<null | DropTarget>; setDrop?: (value: null | RefObject<DropTarget>) => void; drags?: RefObject<null | DragTarget>[]; registerDrag?: (item: RefObject<null | DragTarget>) => void; deregisterDrag?: (item: RefObject<null | DragTarget>) => void; drops?: RefObject<null | DropTarget>[]; registerDrop?: (item: RefObject<null | DragTarget>) => void; deregisterDrop?: (item: RefObject<null | DragTarget>) => void }>
The context to use for the droppable.