I'm using jqGrid
to display some data to users. I want this grid to be sortable, but the data jqGrid sends isn't exactly what I need.
Here is the query string jqGrid sends now:
http://local/MyService.svc/GetData?_search=false&nd=1313069918597&rows=50&page=1&sidx=ColumnName&sord=asc
But my service needs it to be:
http://local/MyService.svc/GetData?_search=false&nd=1313069918597&rows=50&page=1&sidx='ColumnName'&sord='asc'
Notice the single quotes around ColumnName
and asc
There are tons of jqGrid options and I haven't found anything that allows me to manipulate the querystring parameters in this way. Any help is much appreciated!