I have an MVC grid where I have a Save event defined as follows:
.Events(events => events.Change("gridRowChange").Edit("onEdit").Save("onSave"))
In my JavaScript code I have an onSave(e) function defined that never gets called when a grid item is saved.
I should also point out that all grid rows in this page are saved manually via a JS function containing the following line.
$("#grid").data("kendoGrid").saveRow();
I saw in another thread from several years ago that someone else was having the same issue doing what I'm doing but I never saw a resolution.