ext4.0中如何将checkcolumn设为只读
caelyntang
2012-08-25
{
xtype: 'checkcolumn', header : "审批", width : 50, id:'approval', dataIndex : 'approval' } |
|
caelyntang
2012-09-27
{
header : "审批", width : 40, id:'approval', dataIndex : 'approval', sortable : true, renderer:function(value){ if(value){ return "<input type='checkbox' onchange='JavaScript:if(this.checked) {this.checked = false;} else{this.checked = true;}' checked />"; }else { return "<input type='checkbox' onchange='JavaScript:if(this.checked) {this.checked = false;} else{this.checked = true;}' />"; } } } |