Hi,
I managed to create a hierarchy grid like the demo https://demos.telerik.com/kendo-ui/grid/hierarchy with two remote json data sources. I am wondering if there is a way to achieve the same (see attached screen shot) with a single remote json datasource as follows. Thank you!
{
"categories": [
{
"categoryName": "SciFi",
"description": "SciFi movies since 1970",
"movies": [
{ "title": "Star Wars: A New Hope", "year": 1977},
{ "title": "Star Wars: The Empire Strikes Back", "year": 1980},
{ "title": "Star Wars: Return of the Jedi", "year": 1983}
]
},
{
"categoryName": "Drama",
"description": "Drama movies since 1990",
"movies": [
{ "title": "The Shawshenk Redemption", "year": 1994},
{ "title": "Fight Club", "year": 1999},
{ "title": "The Usual Suspects", "year": 1995}
]
}
]
}