-
30 Aug 2011 3:57 PM #11
the issue is the same for both threads, so I have merged them.The corrected bug id for the problem is TOUCH-497
-
21 Oct 2011 12:57 PM #12
Possible work around
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
}
} );
Success! Looks like we've fixed this one. According to our records the fix was applied for
TOUCH-497
in
2.0.


Reply With Quote