doLayout on IE
January 6th, 2009 Posted in noodtarareid.com | editThe 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.# |