Reputation: 13056
EditorGridPanel shows a small red triangular corner on the column that is edited to indicate an unsaved record.
Since I am using autoSave, I don't need to indicate the record as dirty/unsaved.
Is there an easy way to disable this ?
Upvotes: 2
Views: 10713
Reputation: 3959
view: Ext.grid.GridView({markDirty: false})
or
viewConfig: {
markDirty: false
}
Upvotes: 10