ks2009
22 Nov 2011, 9:51 PM
Good day,
I have a panel declaration as this:
panel = Ext.create('Ext.Panel',{id:'preview',title:'Document Preview',frame:true,
collapsible:true,
//floatable:true,
title:'Document Preview',
height:'55%',
width:'100%',
layout:
{
type:'hbox',
align:'stretched'
},
html:'<iframe id="myframe" width="100%" height="100%" src="_blank" style="z-index:-1"></iframe>'
});
When code like Ext.Msg.wait(''....), it is being shown behind the iframe. I set the z-index of the iframe but it is still not making the right result.
Thank you
I have a panel declaration as this:
panel = Ext.create('Ext.Panel',{id:'preview',title:'Document Preview',frame:true,
collapsible:true,
//floatable:true,
title:'Document Preview',
height:'55%',
width:'100%',
layout:
{
type:'hbox',
align:'stretched'
},
html:'<iframe id="myframe" width="100%" height="100%" src="_blank" style="z-index:-1"></iframe>'
});
When code like Ext.Msg.wait(''....), it is being shown behind the iframe. I set the z-index of the iframe but it is still not making the right result.
Thank you