Ext JS 4:如何禁用checkcolumn中的一些复选框

时间:2014-03-06 09:49:49

标签: extjs checkbox extjs4 hide selected

我有一个带有checkcolumn的网格,我想禁用一些复选框。我可以通过dataIndex预先选择它们,也可以使用渲染器隐藏它们。但无法禁用预先选中的复选框。这是我的checkcolumn代码段。

{
    xtype:'checkcolumn', 
    id:'check',
    width:40,
    dataIndex : 'check',
    renderer: function(value , metaData, record, rowIndex, colIndex, store, view, returnVal) {
              if (value == false){
                  return Ext.ux.CheckColumn.prototype.renderer.apply(this, arguments);
              }

     }
}

请帮助我找出锄头来禁用预先选中的复选框。

0 个答案:

没有答案