The node whose children have been changed. If the changes have occurred on the root level, this parameter is undefined.
<ulid="panelbar"></ul><script>$("#panelbar").kendoPanelBar({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>
<ulid="panelbar"></ul><script>functionpanelbar_dataBound(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("DataBound", e.node);}$("#panelbar").kendoPanelBar({dataSource:[{text:"foo",items:[{text:"bar"}]}]});var panelbar =$("#panelbar").data("kendoPanelBar");
panelbar.bind("dataBound", panelbar_dataBound);</script>