Guest User

Untitled

a guest
May 9th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Alternative way to get a reference to the underlying Ext.Window element of Ext.MessageBox in ExtJS4
  2. var msgBox = Ext.MessageBox.getDialog()
  3.  
  4. var w = Ext.MessageBox.confirm('Confirm', 'Are you sure you want to do that?', showResult);
  5. w.close();
  6.  
  7. Ext.MessageBox.confirm('Confirm', 'Are you sure you want to do that?', showResult);
  8. Ext.MessageBox.close();
Advertisement
Add Comment
Please, Sign In to add comment