Hi I am trying to use the single column search in jqgrid using MVC 2 IN .NET (VS 2008) this is the code I have so far but I need an example to match it with or a tip of wha
It's a lot easier than you think for server side search. Your indexes in your grid will come across in the json call as arguments. Also there is a parameter in the GridSettings argument that will be set to true if it is a search.. It's called IsSearch. There is also a sortorder and column in the GridSettings argument that will help you build dy
So, you'd have something like this..
public JsonResult GetUsers(GridSettings gridSettings, string FirstName, string LastName)
{
// conditional logic and queries here and return results)
}