Hi,
I am new in jqwidgets. I have a complex JSON structure.
{
“name”: “xx”,
“properties”: {
“description”: “a sample”,
“packageFormat”: “ABC”,
“segmentDurationInSec”: 10,
“variants”: [
{
“name”: “app1”,
“version”: “4”,
“videoStreams”: [
{
“format”: “H264”,
“bitrate”: “400000”
}
]
}
]
}
}
I am using jqxgrid. Main grid populating name,description and package format. Expanding main grid showing the variants details in another grid. Upto this is ok. Now I want to expand variants grid to show the video streams. I am not able to do this. I want your help to know it is possible or not and if possible then how?
Thanks in advance.