thanks for the quick response!
so if I load my data into a local variable (via ajax), then set up my grid to use local storage, it should work, right? I changed my code to the following yet sorting still doesn’t work:
$.getJSON( url, { format: “json” }).success(function( data ) {
$(“#jqGrid”).jqGrid({
data: data,
datatype: “local”,
jsonReader: {
repeatitems: false
},
………..