MvcJqGrid
MvcJqGrid copied to clipboard
Adding postdata
Option to add additional data to the server request.
An example of this already exists /Home/PostData
Not anymore :)
If you guys are talking about passing addional parameters into controller's method, this can be done by adding routeValues:
.SetUrl(Url.Action("GridData", "Location", new { id = Model.Id }))
Corresponding controllers action: public ActionResult GridData(int id, GridSettings gridSettings)