-
5 Dec 2011 10:35 AM #1
Ext.MessageBox/LoadMask and z-index management
Ext.MessageBox/LoadMask and z-index management
The example below says it all:
Code:Ext.setup({ onReady: function() { Ext.Viewport.add( { xtype: 'panel', layout: 'hbox', items: [ { xtype: 'toolbar', docked: 'top', items: [ { text: 'Mask first panel', handler: function() { Ext.getCmp('pnl1').mask('Please wait...'); Ext.Msg.prompt('Title', 'Enter something', function() {}); } }, { text: 'Mask second panel', handler: function() { Ext.getCmp('pnl2').mask('Please wait...'); Ext.Msg.prompt('Title', 'Enter something', function() {}); } } ] }, { xtype: 'panel', width: 250, id: 'pnl1' }, { xtype: 'panel', flex: 1, id: 'pnl2' } ] }); } });--
Rahul Singla
-
5 Dec 2011 11:04 AM #2Sencha - Sencha Touch Dev Team
- Join Date
- Mar 2007
- Location
- Redwood City, California
- Posts
- 3,651
- Vote Rating
- 14
Thank you for the report, this is something we are painfully aware of.
-
5 Dec 2011 1:49 PM #3
Yes, I can imagine that.. Managing z-indexes can be tricky in these situations.
--
Rahul Singla
Success! Looks like we've fixed this one. According to our records the fix was applied for
TOUCH-1182
in
2.0.


Reply With Quote