BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Andrew,
Thank you for using Syncfusion products.
Your requirement can be achieved in JSON mode using set_dataSource() function . Please refer to the following code snippets:
$("#updateDB").live("click", function () { // click update data function to Update data source
var data =
[{ "UniversityCode": 10001, "Title": "Distributed Component Architecture", "Duration": 90, "CourseFees": 2000, "CGPA": 1 },
{ "UniversityCode": 10002, "Title": "Data Structures", "Duration": 60, "CourseFees": 1000, "CGPA": 2 },
{ "UniversityCode": 10003, "Title": "Neural Networks", "Duration": 75, "CourseFees": 1750, "CGPA": 3}];
$find("Grid1").jsonModeMgr.set_dataSource(data); // “Grid1” is grid ID
});
For your convenience , we have prepared the sample and the same can be downloaded from the following link
Please try this and let us know if you have any queries.
Regards,
Eswari S
[
AcceptVerbs(HttpVerbs.Post)]
public ActionResult ServerPaging(PagingParams args)
{
IEnumerable data =new StudentDataContext().Student.ToList();
return data.GridJSONActions<Student>();
}
Hi Andrew,
Thanks for your update.
Currently we do not support for 'Client Side Data Processing' in the Essential Grid MVC. We can achieve your requirement using JavaScript control. We suggest you to use Essential JavaScript control. Please check with the following online sample link for JavaScript controls:
http://js.syncfusion.com/demos/beta/#!/flat/grid/Paging
Please let us know if you would require any further assistance.
Regards,
Eswari S