When using the orgchart for a large set of nodes (2000+) it can be cumbersome to find where you are when a node is expanded. Is there a way to keep the just expanded node selected?
I've added an event handled to the Expand event which is called correct.
<script>
function onExpand(e) {
// alert("event: Expand --> " + e.dataItems[0].title + " expanded");
alert(e.dataItems[0].id);
var orgChart = $("orgChart").getKendoOrgChart();
orgChart.select(e.dataItems[0]);
}
</script>
The alert fires with the correct id but dosen't seem to select the node that was clicked. I'd like to have that selected so the end user doesn't lose their place as the orgchart expands. Thanks!