Is there a way to do show at with an Ext messagebox?
Is there a way to do show at with an Ext messagebox?
The functionality is not directly supported by Ext.MessageBox, but I created an override for you that shows how you could manage to do it.
Code:Ext.MessageBox.show = Ext.MessageBox.show.createInterceptor( function(config) { var pos = config.showAt; if (pos) this.on({ 'beforeshow': function() { this.setPosition(pos.x, pos.y); }, single: true }); }, Ext.MessageBox.getDialog() ); Ext.MessageBox.show({ msg: 'test', showAt: { x: 10, y: 30 } });
Last edited by plalx; 18 Oct 2010 at 6:17 AM. Reason: Modified the code...
Awesome! Thank you!