I'm working with jqgrid in an ASPNET MVC 4 project (NOT using jqgrid MVC version)
This is how I create the columns
colModel: [
{ name: 'chipId',index: 'chipId', editable: true, sortable: true, hidden: true, align: 'left'},
{ name: 'number',index: 'number', editable: true, sortable: true, hidden: false, align: 'left'},
],
I'm changing the names of the parameters like this:
prmNames: { nd: null, search: null, page: "pageNumber", rows: "pageSize", sort: "sortColumn", order: "sortDirection" },
And in the server I'm receiving it like this:
public jqGridData<Chip> GetGridData(int pageSize, int pageNumber, string sortColumn, string sortDirection)
Where jqGridData is a custom class.
"sortColumn.String":"A value is required but was not present in the request.
In Chrome:
Request URL:http://localhost:18323/api/Chips?pageSize=15&pageNumber=1&sortColumn=&sortDirection=asc
Request Method:GET
Status Code:400 Bad Request
Seems that the first time the sortColumn is empty the first time.
What could be the problem?
Thanks in advance!! Guillermo.