I\'m trying to use jqGrid with local data and I\'m finding a couple of issues:
I\'m initializing the thing like so:
function refreshGrid($grid, results)
If you are using Local data, you should mention your Local json Data in jqGrid's setGridParam property
json
jqGrid
setGridParam
jQuery("#list") .jqGrid('setGridParam', { datatype: 'local', data:results //json object });
To reload the jqgrid you can use the following.
jqgrid
jQuery("#list").trigger("reloadGrid");