ExtJSGrid在IE6下宽度的问题解决方法_extjs
来源:动视网
责编:小采
时间:2020-11-27 20:42:08
ExtJSGrid在IE6下宽度的问题解决方法_extjs
ExtJSGrid在IE6下宽度的问题解决方法_extjs:解决方法: 1、修改ext-all.css,找到.x-grid3-header-offset,修改为.x-grid3-header-offset{padding-left:1px;/*width:10000px;*/width:auto;} 2、在grid中加入下面代码: 代码如下:monitorResize: true, doLayout
导读ExtJSGrid在IE6下宽度的问题解决方法_extjs:解决方法: 1、修改ext-all.css,找到.x-grid3-header-offset,修改为.x-grid3-header-offset{padding-left:1px;/*width:10000px;*/width:auto;} 2、在grid中加入下面代码: 代码如下:monitorResize: true, doLayout

解决方法:
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);
}
ExtJSGrid在IE6下宽度的问题解决方法_extjs
ExtJSGrid在IE6下宽度的问题解决方法_extjs:解决方法: 1、修改ext-all.css,找到.x-grid3-header-offset,修改为.x-grid3-header-offset{padding-left:1px;/*width:10000px;*/width:auto;} 2、在grid中加入下面代码: 代码如下:monitorResize: true, doLayout