码迷,mamicode.com
首页 > Web开发 > 详细

Extjs隐藏某列

时间:2014-07-24 17:27:40      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   re   c   cti   

如何在动态的修改列的显示和隐藏:
下面为示例代码:
if(matchStatus.getValue()=="weipp"){

colMode=this.getColumnModel();

var handColIndx=colMode.findColumnIndex("match");

colMode.setHidden(handColIndx,false);

}else{

var colMode=this.getColumnModel();

var handColIndx=colMode.findColumnIndex("match");

colMode.setHidden(handColIndx,true);

}

 

 

注意的是:当列当中配置了gridShow : false,的时候,就无法找到列对象了
 可以写在refresh中
调用:
  1. listeners :{
  2. afterrender :function(){
  3. var thisGrid =this;
  4. var colMode = thisGrid.getColumnModel();
  5. var handColIndex = colMode.findColumnIndex(‘satisfactionName‘);
  6. if(thisGrid.petitionTypeCode==3){
  7. colMode.setHidden(handColIndex,false);
  8. }else{
  9. colMode.setHidden(handColIndex,true);
  10. }
  11. }
  12. },
 
               
 
 

 





Extjs隐藏某列,布布扣,bubuko.com

Extjs隐藏某列

标签:style   blog   http   color   io   re   c   cti   

原文地址:http://www.cnblogs.com/babyhhcsy/p/3865655.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!