V
Vimalkumar Selvaraj
Guest
Hi, Now I understand your use case , but how you build your data doesn't seems to me correct, because you created one array and pushing all your items that ideally going to be only one level of nodes. When you have child item under a node you should add it as array of node object to items config, Something like this in hierarchical way, //You can build your data by running a for loop based on your returned record count, this is just a sample. var data=[ {text:"test1",items:[ {text:"test1-1"}, {text:"test1-2",items:[ {text:"test1-2-1},{text:"test1-2-2"}] }] }] Refer this kendo doc and example how you can create a hierarchical tree structure demos.telerik.com/.../local-data-binding docs.telerik.com/.../treeview It will be great if you can generate Application XML for this Call Tree Application from Rollbase and send us to help you further. We can directly fix what you are asking and share the XML again. Thanks, Vimal.
Continue reading...
Continue reading...