I am allowing users to edit some cells of the grid. For example, when they enter a date cell, a datepicker pops out and they select a date. This action of changing the cell contents fires the grid's save
event and it causes a little red flag to appear in the corner of the cell.
I've tried setting the dirty property to false:
save: function (e) {
// here, save the row to the database for "real-time" saves after every change
// no need to hit a Save button
// <snip>
e.model.dirty = false; // does not remove the red flag
}
but that does not clear the red flag. What is the proper way to clear it?