asp.net mvc 3 - Make the MVCContrib-generated-column-names to make ajax calls -
it sounds simple question, i've been strugling entire afternoon. i'm trying put grid in partialview pagination, sorting , everything. first problem pager links: did not hold filter options, since not on pages query string. that's how solved it: public class paginationcontainer { public ipagination paginatedresult { get; set; } public routevaluedictionary routevaluedictionary { get; set; } } i created class, used pager: @using mvccontrib.ui.pager @model aqxweb.models.paginationcontainer @{ string action = viewcontext.controller.valueprovider.getvalue("action").rawvalue.tostring(); string controller = viewcontext.controller.valueprovider.getvalue("controller").rawvalue.tostring(); } @functions { public routevaluedictionary getroute(int page) { var routevalues = new routevaluedictionary(); foreach (string key in model.routevaluedictionary.keys) { routevalues[key] = model.routevaluedictionary[key]; } routevalues["page"] = page; return routevalu...