首页 > 编程 > JavaScript > 正文

Ext JS Grid在IE6 下宽度的问题解决方法

2019-11-21 01:28:07
字体:
来源:转载
供稿:网友
解决方法:
1、修改ext-all.css,找到.x-grid3-header-offset,修改为.x-grid3-header-offset{padding-left:1px;/*width:10000px;*/width:auto;}
2、在grid中加入下面代码:
复制代码 代码如下:

monitorResize: true,
doLayout: function() {
this.setSize(Ext.get(this.getEl().dom.parentNode).getSize(true));
Ext.grid.GridPanel.prototype.doLayout.call(this);
}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表