Hi Alex,
thanks for your answer! I get the data if I am using this:
$("#treeView").kendoTreeView({
dataSource: [
{
text: "Item 1",
items: [
{ text: "Item 1.1" },
{ text: "Item 1.2" }
]
},
{ text: "Item 2" }
]
})
But what if I am using an unordered list (<ul><li>item</li></ul>) - can i get a serialized array / json array from the dataSource?
Thank you for your help!
Ingo