I have a multi-level Kendo Panelbar; I need to expand the panelbar all the way down to one of its child nodes;
this is the best I could come up with, but it's limited to the first level of the panel item:
var panelBar = $(pnlMonitorId).data("kendoPanelBar");
panelBar.select(panelBar.element.children("li").eq(0));
var item = panelBar.select();
panelBar.expand(item);
any ideas?
thanks