无法使用Ext.grid.CheckColumn Extjs 2.2版在网格中显示复选框

时间:2017-12-13 07:52:00

标签: extjs extjs-grid extjs2

当我尝试使用以下代码将检查列添加到网格时

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版本中是否有替代此方法?

1 个答案:

答案 0 :(得分:0)

使用操作列 { xtype:' checkcolumn', text:' Active', dataIndex:'有效' }