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