-
19 Aug 2012 6:22 PM #1
Answered: Ext.Msg is not show on top of view
Answered: Ext.Msg is not show on top of view
Hi Sencha Community,
So the problem is simply to describe but I can't solved, I create a Ext.Msg.confirm but always is show under the window that I show at this moment. The code is large but this can ilustrated what happend:
Thanks in advanced,Code:Ext.define('myApp.controller.MyControl', { //some code... showEvent: function(){ Ext.Viewport.add({ xtype: panel, //some config... items: [ xtype: button //When this button is tap---> Ext.Msg,confirm(//Some code..)---> this message is show under the current window HOW I CAN MAKE THAT THIS CAN SHOW ON FRONT OF VIEW??? }) } })
Regards.
-
Best Answer Posted by mitchellsimoens
This is working fine for me:
Code:Ext.Viewport.add({ xtype : 'panel', items : [ { xtype : 'button', text : 'Open', handler : function(button) { Ext.Msg.confirm('Confirm', 'Do you want to confirm?'); } } ] });
-
21 Aug 2012 5:45 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,624
- Vote Rating
- 435
- Answers
- 3106
This is working fine for me:
Code:Ext.Viewport.add({ xtype : 'panel', items : [ { xtype : 'button', text : 'Open', handler : function(button) { Ext.Msg.confirm('Confirm', 'Do you want to confirm?'); } } ] });Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
21 Aug 2012 5:58 AM #3
I had to do..
I had to do..
I had to hide the current window while the Ext.Msg is show and them when the user confirm show the window again.


Reply With Quote