I use jqGrid to display some data to users. I want this grid to be sortable, but jqGrid data is not sent exactly what I need.
Here is the jqGrid query string sending now:
http://local/MyService.svc/GetData?_search=false&nd=1313069918597&rows=50&page=1&sidx=ColumnName&sord=asc
But my service needs the following:
http://local/MyService.svc/GetData?_search=false&nd=1313069918597&rows=50&page=1&sidx='ColumnName'&sord='asc'
Note the single quotes around ColumnName and asc
There are many jqGrid options, and I did not find anything that would allow me to manipulate the querystring parameters this way. Any help is much appreciated!
Darcy source share