Hello,
Lets say we have 2 different paths in treeview and on child level of these paths we have the same elements (bar)
$("#treeview").kendoTreeView({
loadOnDemand: true,
dataSource: [
{ text: "foo", expanded: true, items: [
{ text: "bar" }
] },
{ text: "ttt", expanded: true, items: [
{ text: "bar" }
] }
]
});
How can i select 'bar' node from the second path ('ttt' node)?
There is expandPath method to expand tree that accepts array of ids to expand. I want to achieve the same but for selection.
http://dojo.telerik.com/IFamO/4
There i want to select 'bar' under 'ttt' node (programmatically).