Jun
11
ExtJsGridPanel中IE6中出现长滚动条的解决方法
在IE6中GridPanel如果不是设置成固定的宽度,则会出现一个很长的滚动条,整个GridPanel似乎变得有页面10倍宽,
解决方法:
修改ext-all.css第 #337 行:
.x-grid3-header-offset{padding-left:1px;width:10000px;}
to
.x-grid3-header-offset{padding-left:1px;width:auto;}
或者直接在页面中加入:
<style type="text/css">
.x-grid3-header-offset{padding-left:1px;width:auto;}
</style>
解决方法:
修改ext-all.css第 #337 行:
.x-grid3-header-offset{padding-left:1px;width:10000px;}
to
.x-grid3-header-offset{padding-left:1px;width:auto;}
或者直接在页面中加入:
<style type="text/css">
.x-grid3-header-offset{padding-left:1px;width:auto;}
</style>
禁止用户手动输入inpu
利用Javascript



