This is not supported out of the box. However, the grid API should allow this to be implemented. Check edit and save events. There you can listen to the changes to the model instance that is currently being edited. Here is a quick example:
$("#grid").kendoGrid({ edit: function(e) { e.model.unbind("change", model_change).bind("change", model_change); } }); function model_change(e) { var model = this; var field = e.field;
source share