How can I check if a Kendo Grid has changes? I heard that there is a dirty property, but I cant find it.
dirty
worth a try:
var hasDirtyRow = $.grep(gridDataSource.view(), function(e) { return e.dirty === true; }); if (hasDirtyRow.length != 0) { // grid has dirty row(s) }