items
Returns a jQuery object of all DOM elements which correspond to the data items from the view of the dataSource.
Returns jQuery
A jQuery object containing all loaded nodes.
Example
<div id="orgchart"></div>
<script>
$("#orgchart").kendoOrgChart({
dataSource: [
{ id: 1, name: "Jane", title: "Boss", expanded: true },
{ id: 2, name: "John", title: "Lead", expanded: true, parentId: 1 },
{ id: 3, name: "Jill", title: "Worker", expanded: true, parentId: 2 },
{ id: 4, name: "James", title: "Worker", expanded: true, parentId: 2 },
]
});
var orgChart = $("#orgchart").getKendoOrgChart();
console.log(orgChart.items());
</script>