I'm handling double-clicks on a treeview node like this:
$("#treeview [role=treeitem] span").on("dblclick", function(e){
var tree = $("#treeview").data("kendoTreeView");
var item = tree.dataItem($(e.target).closest("li"));
});
It works great until I enable dragAndDrop on the tree. If a node is dragged/dropped to another location, double-clicking on it no longer fires the "dblclick" event on the treeview.
You can test this here:
http://jsbin.com/fubajoyexe/edit?html,output
Just add "dragAndDrop: true," to the treeview configuration, then drag a node to another location. Double-click on that node and it no longer works. Do you know of any workarounds?