Reputation: 625
I have to add a currency symbol in the message text that has to be displayed in the messagebox. Is it possible using ExtJs 4.2 ?
Upvotes: 1
Views: 1762
Reputation: 4405
Make a CSS class that has your image as the background, then set the icon
of your MessageBox
to be that class:
.my-message-box {
background-image: url(images/bang.png);
}
Ext.Msg.show({
title: 'Message title',
msg: 'My Message',
icon: 'my-message-box'
});
Upvotes: 1