<divid="treeview"></div><script>$("#treeview").kendoTreeView({dataSource:[{text:"foo",items:[{text:"bar"}]}],change:function(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("Change",this.select());}});</script>
<divid="treeview"></div><script>functiontree_change(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("Change",this.select());}$("#treeview").kendoTreeView({dataSource:[{text:"foo",items:[{text:"bar"}]}]});var treeview =$("#treeview").data("kendoTreeView");
treeview.bind("change", tree_change);</script>