Shows where the source has been dropped. One of the values over, before, or after.
<divid="treeview"></div><script>$("#treeview").kendoTreeView({dragAndDrop:true,dataSource:[{text:"foo",items:[{text:"bar"}]}],dragend:function(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("Drag end", e.sourceNode, e.dropPosition, e.destinationNode);}});</script>
<divid="treeview"></div><script>functiontree_dragend(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("Drag end", e.sourceNode, e.dropPosition, e.destinationNode);}$("#treeview").kendoTreeView({dragAndDrop:true,dataSource:[{text:"foo",items:[{text:"bar"}]}]});var treeview =$("#treeview").data("kendoTreeView");
treeview.bind("dragend", tree_dragend);</script>