How can I check if a Kendo Grid has changes? I heard that there is a dirty property, but I cant find it.
dirty
grid.dataSource.hasChanges will let you know if the datasource has changed
if (datasource.hasChanges() === true) { alert('yes'); } else { alert('no'); }