我正在使用 Sencha ExtJS,并添加了带有复选框模型的网格面板。我想根据网格面板值禁用一些复选框。我还没有看到复选框模型的渲染器选项。
问问题
2431 次
2 回答
2
最后我找到了解决方案。覆盖复选框选择模型
renderer: function(val, meta, record, rowIndex, colIndex, store, view) {
var status = record.data['status'];
if(status == 's'){
meta.tdCls = Ext.baseCSSPrefix + 'grid-cell-special';
return '<div class="' + Ext.baseCSSPrefix + 'grid-row-checker"> </div>';
} else {
return null;
}
}
来源:http ://extjswithsandeesh.blogspot.com/2012/05/display-checkboxes-for-selected-rows.html
于 2013-06-22T05:39:47.897 回答