-
the issue is the same for both threads, so I have merged them.The corrected bug id for the problem is TOUCH-497
-
Possible work around
I had the same issue. Had a modal panel then a message box.
Ext.Msg.confirm would show up behind modal panel.
I then corrected by making a local instance of Ext.MessageBox.
Code below.
Bret
/* this will show up behind
Ext.Msg.confirm("Security", "Are you sure you do not want a security code?<p>If so press 'Yes' to not set a security code.",
function(btn, text){
if (btn == 'yes'){
pthis.hide();
}
} );
*/
/* this fixed it */
msg = new Ext.MessageBox({
buttons: Ext.MessageBox.YESNO,
modal : true,
} );
msg.confirm("Security", "Are you sure you do not want a security code?<p>If so press 'Yes' to not set a security code.",
function(btn, text){
if (btn == 'yes'){
pthis.hide(); // hide the modal panel
}
} );