我有一個網格與檢查列和檢查列閱讀我的數據,但我不能設置它,我想知道如何設置它簡單的方法。 我希望我的檢查欄成爲視圖只在我的網格數據如何設置它?下面 是我的示例代碼:如何將Extjs.grid.CheckColumn設置爲僅用於只讀?
var chkColH = new Ext.grid.CheckColumn({
header: ' H',
dataIndex: 'testing',
resizable:false,
disabled :true, //***I wan to disabled this check column in my grid for view only
width: 25
});
colModel=new Ext.grid.ColumnModel([
chkColH
]);
xtype:'editorgrid',
id:'theGrid',
stripeRows:true,
store:gridStore,
colModel:colModel,
trackMouseOver:false,
columnLines:true,
enableColumnMove:false,
enableHdMenu:false,
frame:true,
disableSelection:true,
plugins: [chkColH],
sm:chkSM
看到答案在http://stackoverflow.com/questions/11440216工作液/ how-do-i-disable -a-control-in-an-extjs-grid – peter 2015-03-03 10:37:45