DragAndDropProps
Represents the properties of the DragAndDrop component.
Definition
Package:@progress/kendo-react-common
Properties
children?
ReactNode
Represents the children of the DragAndDrop component. The children prop can be any valid React Element.
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 }>
Allows passing a custom context to the DragAndDrop component. Useful when there are multiple drag-and-drop functionalities in a single component.