harunB10
harunB10

Reputation: 5197

Ext.msg.Alert align text message in center

Is there a way to center the text message inside alert box?

Ext.Msg.alert('Fiddle', 'Welcome to Sencha Fiddle!');

enter image description here

Any ideas?

EDIT

If I apply this to CSS then it works... But how can I apply it to the code?

enter image description here

Upvotes: 0

Views: 1001

Answers (1)

Matheus Hatje
Matheus Hatje

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

Related Questions