Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
EditorGridPanel 在已编辑的列上显示一个小的红色三角形角,以指示未保存的记录。
由于我使用的是自动保存,我不需要将记录指示为脏/未保存。
有没有简单的方法来禁用它?
view: Ext.grid.GridView({markDirty: false})
或者
viewConfig: { markDirty: false }
.x-grid3-dirty-cell { background-image: none; }
看到这个:
http://www.sencha.com/learn/Ext_FAQ_Grid#Dirty_Record_.2F_Red_Flag_.28modifying.2C_etc..29