IE complains about "style null"
From the ExtJS example "window/hello.html", I change the JS file in order to show the window directly (not by clicking the button)
here's the new code for hello.js
Ext.onReady(function(){
var win = new Ext.Window({
el:'hello-win',
layout:'fit',
width:500,
height:300,
closeAction:'hide',
plain: true,
items: new Ext.TabPanel({
el: 'hello-tabs',
autoTabs:true,
activeTab:0,
deferredRender:false,
border:false
}),
buttons: [{
text:'Submit',
disabled:true
},{
text: 'Close',
handler: function(){
win.hide();
}
}]
});
win.show(this);
}
The windows appears correctly with FireFox, but it doesn't work under IE6. It complains about "style" that has NULL value, and doesn't show the window
any idea?
#If you have any other info about this subject , Please add it free.# |
omr06vg8k1ys