Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.