Add own search parameter in jqGrid in Asp.net mvc
Posted
by paresh
on Stack Overflow
See other posts from Stack Overflow
or by paresh
Published on 2010-04-20T11:02:24Z
Indexed on
2010/04/20
11:03 UTC
Read the original article
Hit count: 422
I have just started working on asp.net mvc and jqgrid.
I have a calendar which returns a date, a multiselect list box and apply filter button outside of the grid. Is there a way to pass these filter values to the server-side actionresult GridData() based on the selected date and multiple selected values and also it persist while paging or sorting.
public ActionResult GridData(string sidx, string sord, int? page, int? rows, Collection categoryOptions,string fromDate) {..}
Thanks!
© Stack Overflow or respective owner