Ext EditorGridPanel 指定单元格不可编辑

两种方法一样,只是写法不同
第一种写法
1  listeners:{  
2          beforeedit: function (e){  
3               if (...) e.cancel  =  true ; // true表示不可编辑
4          }  
5  }

第二种写法
1  grid.on('beforeedit', function (e)){
2     var  record  =  e.record;
3     if (...){
4      e.cancel  =   true ; // true表示不可编辑
5    }
6  }

你可能感兴趣的:(Ext EditorGridPanel 指定单元格不可编辑)