I am new to use slickgrid.
I want to know if anyone can help with returning actionresult or jsonresult to slickgrid. How can we do that?
I am new to use slickgrid.
I want to know if anyone can help with returning actionresult or jsonresult to slickgrid. How can we do that?
You should be able to return your model to the slickgrid as a JsonResult as follows:
return Json(JsonConvert.SerializeObject(YOUR_MODEL_INSTANCE));
Have a look at http://james.newtonking.com/projects/json-net.aspx