Reputation: 5197
Is there a way to center the text message inside alert box?
Ext.Msg.alert('Fiddle', 'Welcome to Sencha Fiddle!');
Any ideas?
EDIT
If I apply this to CSS then it works... But how can I apply it to the code?
Upvotes: 0
Views: 1001
Reputation: 987
The second parameter of Ext.Msg.alert accepts HTML content, so you can use like this to center the message
Ext.Msg.alert('Fiddle', '<p style="text-align:center">Welcome centered</p>');
Upvotes: 2