I´m trying to implement a paging mechanism like this:
http://demos.telerik.com/kendo-ui/grid/virtualization-remote-data
using json data that has a hierarchical structure like this:
{
"issue_list":[
{
"issue":{
"href":"issue/1",
"subject":"some text",
"body":"some more text"
}
},
{
"issue":{
"href":"issue/2",
"subject":"some other text",
"body":"some more other text"
}
}
]
}
Is this possible to do if I specify the structure in the schema in some way?
This post:
http://stackoverflow.com/questions/14731949/what-must-my-kendo-datasource-schema-look-like
implies that the data structure can not be hierarchical? Is this still true?