welcome to my space

doLayout on IE

January 6th, 2009 Posted in noodtarareid.com | edit
I have a Ext.Panel, with column layout and 2 columns with witch of 50% each. Everytime I resize the browser window, the two columns should risize too. In Firefox this works great, on Ie, doesn't. Even If I manually call the main panel doLayout() function. Any ideia on how to make this work on IE?
The code I´m using:
Ext.namespace('TEST');
TEST.page = function() {
return {
panel : undefined,
init : function() {
this.panel = new Ext.Panel({
renderTo: 'CONTAINER',
frame: false,
title: 'Simple Form',
autoWidth: true,
autoHeight: true,
monitorResize: false,
bodyStyle:'position:relative;display:block',
layout: 'column',
items: [{
id: 'column1',
title: 'column1',
columnWidth: 0.5,
xtype: 'panel'
},{
id: 'column2',
title: 'column2',
columnWidth: 0.5,
xtype: 'panel'
}]
});
}
}
}();
monitorResize : true or false makes no difference on IE.
Thank you all.
Zig




#If you have any other info about this subject , Please add it free.#
Your name:
E-mail:
Telphone:

Your comments:


If you have any other info about doLayout on IE , Please add it free.