我正在为复选框列使用 checkboxmodel 插件。但是,我想要的是'如果我检查一列,该行的某些单元格将是可编辑的'......我搜索了很多但没有运气。我正在使用 MVC 模式和因为插件,我不知道如何处理它
/**Grid View**/
plugins: [
Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit: 2
})
],
selType: 'cellmodel',
selModel: Ext.create('Ext.selection.CheckboxModel', {
checkOnly: true,
listeners: {
selectionchange: function(model, records) {
if (records[0]) {
//make any cell of a field editable
}
}
}
}),
{
header:'name',
dataIndex:'name'},
{
header:'Quantity',
dataIndex:'quantity',
}
在这里,如果我检查任何行,我想让网格的数量字段可编辑...如果有人可以提供帮助,那就太好了...