Hemant
Hemant

Reputation: 137

Extjs: Alert message box position

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

Answers (1)

Sean Adkinson
Sean Adkinson

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

Related Questions