当我尝试使用以下代码将检查列添加到网格时
this.entitlementColModel = new Ext.grid.ColumnModel([new Ext.grid.RowNumberer(), {
header : 'CIF',
dataIndex : 'cif',
width : 80,
editor : new Ext.form.TextField({
maxLength : 20,
allowBlank : false
}),
editable : true
}, new Ext.grid.CheckColumn({
header: 'AML',
dataIndex: 'amlActive',
resizable:false,
width: 25,
onMouseDown : function(e, t){}
})]);
获得以下错误
Uncaught TypeError: Ext.grid.CheckColumn is not a constructor
还尝试xtype: 'checkcolumn',
它也不起作用。我目前无法升级ext版本。在2.2版本中是否有替代此方法?
答案 0 :(得分:0)
使用操作列 { xtype:' checkcolumn', text:' Active', dataIndex:'有效' }