Jqgrid inline edit for selectList hits server for each row

116 Views Asked by At
i have set ,
editoptions: { aysnc: true, dataUrl: 'ControllerName/MethodName?__SessionKey=' + sessionkey + "&Id=" + Id, buildSelect: buildSelectFromJson, style: "width: calc(100% - 65px);",
                dataEvents: [
{
                                    type: 'change',
                                    fn: function (e) {}
}
]
}

in which buildSelectFromJson returns select list in html.

Now dataurl hits server for each row but my select list is same for all rows. so how can i restrict to a single hit and then use that select list for all other rows?

1

There are 1 best solutions below

10
On BEST ANSWER

I can suggest you two alternatives:

  1. the server code (responsible for the URL ControllerName/MethodName) can place HTTP caching header. For example Cache-Control: private, max-age=(time in seconds). It will force getting the data during specified time interval from the local web browser cache.
  2. You can make Ajax request to ControllerName/MethodName separately and set editoptions.value based on the response instead of usage editoptions.dataUrl (only if dataUrl is undefined the value will be used). See the answer for the code example of the possible implementation. By the way you can combine the call to ControllerName/MethodName with the main call for filling the grid. See the answer and this one.

By the way the property aysnc: true which you use in editoptions is unknown and it will be ignored.