Hi, all.
I need to display info panel in my app, even if modal window is open. How can I acheive that? or mayme this is impossible?
Hi, all.
I need to display info panel in my app, even if modal window is open. How can I acheive that? or mayme this is impossible?
The idea of the modal panel is that is is 'top of the pile' and nothing should be above it, so I would really examine what you are trying to achieve, whether you should be overlaying another element or whether the modal panel does need to be modal at all.
If you still want to push ahead, the best way to do it is to set the individual CSS z-index property of the panel you want above to a massive value so it is promoted above the modal layer (i.e. 999999999999), or to create a new modal window on top of the other modal window, and then add your content/panel into that.
If you wish to display a popup, perhaps an ExtJS messagebox is more appropriate than a panel?