Jqgrid Custom Json Data No Error But Not Showing Data
I have been working with jqGrid for a while, and I was just trying to create a new server-side script to return data to a client-side grid. A lot of times I try to get back to the
Solution 1:
The value of rows
property of the JSON response from the server have to be array, but you use object instead (it should be "rows": [{}]
, but you use "rows": {}
instead). Even if you have only one item you should still return the array with one of the item.
Post a Comment for "Jqgrid Custom Json Data No Error But Not Showing Data"