I have a Kendo UI grid on a View that correctly display the results of a search based upon some parameters in a form.
The form is submitted to a Controller
public ActionResult Results(SearchInput SearchType)
Which then returns the strongly typed view.
When I sort, I get redirected to this URL which produces a 404 error:
http://localhost:4535/Results/Results?SearchResults-sort=LastName-asc
I have another grid on another form where this behavior does not happen... The only difference is that the controller where it is working has no input parameter
public ActionResult Index()
Any clues?
The form is submitted to a Controller
public ActionResult Results(SearchInput SearchType)
Which then returns the strongly typed view.
When I sort, I get redirected to this URL which produces a 404 error:
http://localhost:4535/Results/Results?SearchResults-sort=LastName-asc
I have another grid on another form where this behavior does not happen... The only difference is that the controller where it is working has no input parameter
public ActionResult Index()
Any clues?