2012-11-26 116 views
0

中禁用組合框我擁有包含Country和State列的網格。此網格數據使用組合框添加。添加數據後,我想完全禁用網格如何在ext js

這是我爲禁用的組合框

gridRegionsRoweditor.on('beforeedit', function(roweditor, rowIndex){ 
      var record = this.gridRegions.store.getAt(rowIndex); 

      if(typeof record.data.ROWDATE != 'undefined'){ 
       grdcmbCountry.setDisabled(true); 
       grdcmbState.setDisabled(true); 
       return false; 
      }else{ 
       grdcmbCountry.setDisabled(false); 
       grdcmbState.setDisabled(false); 
      } 
     },this); 

上述方案並不完美,以我的代碼組合框。當我雙擊查看不清楚組合框的組合框之一時。如何避免這種不清晰的組合框形式的網格?(當我禁用組合框,想看起來像標籤)。是否有可能刪除這些單元格中的雙擊事件以解決我的問題?

enter image description here

回答