Hi All,
I am having json like this..
var data=
{
[
{
"name":"fsdf",
"id":"dfd",
"child":[
{
name:"a",
class:"1"
},
{
name:"b",
class:"2"
}
]
},
{..................................}
]
};
I want to bind "class" in the json for the "text" property in tree node in xml view.
Please suggest me on this how to set path for the above requirement.
Thanks in Advance.