This question is locked. New answers and comments are not allowed.
Hi,
I have grid bounded with a model,
I want to know how to get the data after sort and filtered in the grid in the view and pass to another controller. It should be in Model (strong typed view), not sure what field. Thanks.
I have grid bounded with a model,
[GridAction]public ActionResult AthletesResultsAjax(string id){ List<MaintenanceAthletesResultsViewModel> model = null; if (!string.IsNullOrEmpty(id)) { model = this._resourceBL.GetMaintenanceAthletesResultsViewModel(int.Parse(id)); } return View(new GridModel(model));}