我有一个带有自定义selModel和cellediting插件的网格。现在我需要添加Checkbox Selection Model。这可能有两个selModels吗?这是我现有的代码
selModel: Ext.create('TTT.MultiCellSelectionModel', {
mode: 'MULTI',
allowDeselect: true
}),
multiSelect: true,
selType: 'cellmodel'
答案 0 :(得分:0)
据我所知,网格不可能有多个SelectionModel。 但是如果你覆盖或创建符合你要求的新SelectionModel类,它就可以完成。
Ext.define('TTT.CustomSelectionModel', {
extend: 'TTT.MultiCellSelectionModel',
// you can put your logic here
})
但是你需要额外的时间。