I'm fairly new to jqgrid How can I show nested json objects inside a jqgrid as individual fields?? below given is the example of json object
[
{
"properties":{
"x":1,
"y":78093,
"closeDate":null,
"
},
"children":[
{
"properties":{
"option":null,
"type":"",
"client":"southface",
"categoryA":[
"x",
"w"
],
"facilitiesOther":null,
"objectId":10,
"docNo":7897,
"Provisions":[
"x",
"z"
],
"sponsor":"own sponsor",
"CategoryB":[
"e",
"f",
"g"
]
]
},
"children":null,
"Type":"test",
"Id":"10"
}
],
"objectType":"document",
"objectId":"89763"
}
]
after fair amount of research I found somewhere that it requires modifying the colmodel Something towards this issue would be very helpful thanks in advance