欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-03-02 08:11:59
解决方法: 1、修改ext-all.css,找到.x-grid3-header-offset,修改为.x-grid3-header-offset{padding-left:...
解决方法:
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);
}