EditorGridPanel禁用某一行

小记:

 

Ext的EditorGridPanel是基于列模型的,因此很容易禁用一列。但如果要根据条件禁用某一行,可以使用如下方法:

 

grid.on("beforeedit",function(e){
  var currRecord = e.record;
  if(!currRecord.get('xxx') 或者其他判断条件){
    e.cancel = true;
  }
});
 

你可能感兴趣的:(ext)