New to Kendo UI for Angular? Start a free 30-day trial
DragClueTemplateDirective
Represents the template for the TreeView drag clue when an item is dragged. To define the clue template,
nest an <ng-template>
tag with the kendoTreeViewDragClueTemplate
directive inside a <kendo-treeview>
tag
(see example).
The text, attempted drop action, source item and destination item are available as context variables in the template:
let-text="text"
(string
)let-action="action"
(DropAction
)let-sourceItem="sourceItem"
(TreeItemLookup
)let-destinationItem="destinationItem"
(TreeItemLookup
)
Selector
[kendoTreeViewDragClueTemplate]