<divid="treeview"></div><script>$("#treeview").kendoTreeView({dragAndDrop:true,dataSource:[{text:"foo",items:[{text:"bar"}]}],dragstart:function(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("Drag start", e.sourceNode);}});</script>
<divid="treeview"></div><script>functiontree_dragstart(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("Drag start", e.sourceNode);}$("#treeview").kendoTreeView({dragAndDrop:true,dataSource:[{text:"foo",items:[{text:"bar"}]}]});var treeview =$("#treeview").data("kendoTreeView");
treeview.bind("dragstart", tree_dragstart);</script>