我有一个网格:
Ext.create('Ext.grid.Panel', {
id: 'grid',
store: this.store,
columns: [{
dataIndex: 'a'
},{
dataIndex: 'b'
},{
dataIndex: 'c'
}],
selModel: {
selType: 'cellmodel'
},
plugins: [cellEditing]
})
使用cellEditting:
var cellEditing = Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit: 1,
listeners: {
beforeedit: function(obj) {
// Something goes here?
}
}
});
现在,有一些按钮可以添加行'到网格,所以记录可能是新的或旧的。
b
和c
可编辑。c
可编辑。< / LI>
我怀疑我需要向beforeedit
听众添加内容,但我不熟悉ExtJS和javascript,所以我不知道如何描述条件。
答案 0 :(得分:5)
你肯定是在正确的轨道上。 &#39; beforeedit&#39; event允许您通过返回false来阻止编辑操作。如果您查看相关文档,可以看到您收到一个对象,该对象提供有关单元格的所有必要信息:http://docs.sencha.com/ext-js/4-1/#!/api/Ext.grid.plugin.CellEditing-event-beforeedit
var cellEditing = Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit: 1,
listeners: {
beforeedit: function(editor, event, opts) {
if (!event.record.phantom && event.column.dataIndex == 'columnC') {
return false;
}
}
}
});
幻像是一个记录属性,用于维护记录是新创建的(尚未同步到服务器)还是最初加载到商店中的所有其他记录。