Why doesn't my KendoGrid call my MVC controller?
I have the following code in a standard C# ASP.NET MVC controller. public JsonResult ReadTeachers() { return Json(ReadTeacherData(), JsonRequestBehavior.AllowGet); } public void UpdateTeachers(IEnumerable<Teacher> updatedTeachers) { // this is never called } I'm trying to call this controller with a KendoGrid. Here is the code for my grid. $("#teachers").kendoGrid({ dataSource: { type: "json", transport: { read: { url: '@Url.Action("ReadTeachers", "EducationPortal")', dataType: "json" }, update: { url: '@Url.Action("UpdateTeachers", "EducationPortal")', dataType: "json" }, parameterMap: