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
  •  | 
  •  

문제

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 ?

도움이 되었습니까?

다른 팁

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

or

viewConfig: {
    markDirty: false
}
.x-grid3-dirty-cell {
  background-image: none;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top