ExtJS 3.x: How to disable the red mark indicating a dirty record in ExtJS EditorGridPanel

StackOverflow https://stackoverflow.com/questions/3083631

  •  28-09-2019
  •  | 
  •  

Question

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 ?

OTHER TIPS

view: Ext.grid.GridView({markDirty: false})

or

viewConfig: {
    markDirty: false
}
.x-grid3-dirty-cell {
  background-image: none;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top