Extjs的Window在IE6中滚动条失效,表单太大 当出现滚动条 时候会出现window和form错位

 

 

Extjs的Window在IE6中滚动条失效,表单太大 当出现滚动条 时候会出现window和form错位_第1张图片

 

在Win全局定义中加上下面这个就行:

bodyStyle  : 'position:relative'

 

 

         var windt1 = new Ext.Window({
             title: ' ',
             width: 800,
             height: 250,
             plain: true,
             resizable: false,
             bodyStyle: 'position:relative',   //这里加入             
             modal: true,
             closeAction: 'hide',
             listeners: {
                 hide: function () {
                     khjlFormPanel1.form.destroy();
                 }
             },
             items: [khjlFormPanel1], buttons: [{
                 text: '提交',
                 handler: function () {

                 }
             }, {
                 text: '重置',
                 handler: function () {
                     khjlFormPanel1.form.reset();
                 }
             }], buttonAlign: 'center'
         });


 

 

 

 

 

 

你可能感兴趣的:(function,IE,ExtJs)