gillou01
8 Jan 2010, 4:49 AM
Ext version tested:
Ext 3.1.0
Adapter used:
ext
css used:
only default ext-all.css
Browser versions tested against:
IE7
IE8
Description:
Form is corrupted when it s bigger than the window in IE 7
Test Case:
/*!
* Ext JS Library 3.1.0
* Copyright(c) 2006-2009 Ext JS, LLC
* licensing@extjs.com
* http://www.extjs.com/license
*/
Ext.onReady(function(){
var win;
var button = Ext.get('show-btn');
button.on('click', function(){
// create the window on the first click and reuse on subsequent clicks
if(!win){
var items=[];
for(var i=0;i<100;i++) {
items[i]={
fieldLabel: 'TEST '+i,
checked:false,
xtype:'checkbox'
};
}
win = new Ext.Window({
//applyTo:'hello-win',
title:'Filter',
layout:'fit',
width:500,
height:300,
closeAction:'hide',
modal: true,
maximizable :false,
minimizable :true,
buttonAlign : 'center',
items: {xtype: 'form',
autoScroll:true,
labelWidth: 350,
bodyStyle: 'padding:15px',
baseCls: 'x-plain',
defaults: {anchor: '95%'},
items :items
},
forceLayout:true,
buttonAlign : 'center',
buttons: [{
text:'Submit',
disabled:true
},{
text: 'Close',
handler: function(){
win.hide();
}
}]
});
}
win.show(this);
});
});
Steps to reproduce the problem:
I ve just modified the hello.html example
Screenshot IE 7 ad IE 8
Ext 3.1.0
Adapter used:
ext
css used:
only default ext-all.css
Browser versions tested against:
IE7
IE8
Description:
Form is corrupted when it s bigger than the window in IE 7
Test Case:
/*!
* Ext JS Library 3.1.0
* Copyright(c) 2006-2009 Ext JS, LLC
* licensing@extjs.com
* http://www.extjs.com/license
*/
Ext.onReady(function(){
var win;
var button = Ext.get('show-btn');
button.on('click', function(){
// create the window on the first click and reuse on subsequent clicks
if(!win){
var items=[];
for(var i=0;i<100;i++) {
items[i]={
fieldLabel: 'TEST '+i,
checked:false,
xtype:'checkbox'
};
}
win = new Ext.Window({
//applyTo:'hello-win',
title:'Filter',
layout:'fit',
width:500,
height:300,
closeAction:'hide',
modal: true,
maximizable :false,
minimizable :true,
buttonAlign : 'center',
items: {xtype: 'form',
autoScroll:true,
labelWidth: 350,
bodyStyle: 'padding:15px',
baseCls: 'x-plain',
defaults: {anchor: '95%'},
items :items
},
forceLayout:true,
buttonAlign : 'center',
buttons: [{
text:'Submit',
disabled:true
},{
text: 'Close',
handler: function(){
win.hide();
}
}]
});
}
win.show(this);
});
});
Steps to reproduce the problem:
I ve just modified the hello.html example
Screenshot IE 7 ad IE 8