Is it possible to display more than one message box at a time?
Is it possible to display more than one message box at a time?
In my application I'm issuing multiple ajax requests. For some of them I display results in MessageBoxes. It often happens that one request comes back, shows a message box and a second later another comes back and shows another message box, which replaces the first one.
I'd prefer the user to have the ability to read the second one, click 'OK' and then read the first one and close it too. Unfortunately Ext.MessageBox is a singleton and so the second MessageBox replaces the first one instead of 'covering' it.
The only solution I see out of this problem is to make a deep copy of Ext.MessageBox (if possible). Does anyone have other ideas or see problems with my solution?