I have been trying to render a table using jqGrid 4.1.2, I am able to get the JSON response from server side, but I am getting empty table. Heres my sample JSON data:
{
"response":{
"total":2,
"page":1,
"rows":[{
"id":135060,
"cell":{
"id":135060,
"name":"12"
}
},
{
"id":115060,
"cell":{
"id":115060,
"name":"12345"
}
}
]
},
"status":"SUCCESS",
"errors":[]
}
I have added the the jqgrid-locale-en.js file, so that shouldn't be the issue. After spending some time on this I feel it has something to do with JSON format that jqGrid expects, If thats is the issue, can someone please tell me how to configure jqGrid to accept the the above JSON format.
Thanks!