Reputation: 137
I am using the Extjs Messagebox in my application. When the Message box appears on screen, it appears at centre but when I minimize my window and again maximize it the message box shifts to top left position. How to fix the position of message alert box in Extjs.
Upvotes: 2
Views: 3083
Reputation: 8605
Ext.MessageBox.center()
puts the message box back in the center of the screen. You may be able to plug in a windowresize
listener that centers it after resize.
Upvotes: 2