Navya R
Navya R

Reputation: 625

How to add a icon in the message for Ext.MesssageBox.alert

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

Answers (1)

kevhender
kevhender

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

Related Questions