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

Cannot display checkbox in grid using Ext.grid.CheckColumn Extjs Version 2.2

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

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',

它也不起作用。我目前无法升级分机版本。在 2.2 版本中是否有任何替代此方法的方法?

使用操作列 { xtype: 'checkcolumn', 文本:'Active', 数据索引:'active' }