2

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 ?

clint
  • 14,402
  • 12
  • 70
  • 79
Rahul
  • 12,886
  • 13
  • 57
  • 62

2 Answers2

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

or

viewConfig: {
    markDirty: false
}
VisioN
  • 143,310
  • 32
  • 282
  • 281
pllee
  • 3,909
  • 2
  • 30
  • 33
5
.x-grid3-dirty-cell {
  background-image: none;
}
Brian Moeskau
  • 20,103
  • 8
  • 71
  • 73