The node whose children have been changed. If the changes have occurred on the root level, this parameter is undefined.
<divid="treeview"></div><script>$("#treeview").kendoTreeView({dataSource:[{text:"foo",items:[{text:"bar"}]}],dataBound:function(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("DataBound", e.node);}});</script>
<divid="treeview"></div><script>functiontree_dataBound(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("DataBound", e.node);}$("#treeview").kendoTreeView({dataSource:[{text:"foo",items:[{text:"bar"}]}]});var treeview =$("#treeview").data("kendoTreeView");
treeview.bind("dataBound", tree_dataBound);
treeview.setDataSource(newkendo.data.HierarchicalDataSource({data:[{text:"bar",items:[{text:"baz"}]}]}));</script>