EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: dayaners on May 14, 2014, 01:13:31 PM



Title: Change Icon from $.message.alert easyui...
Post by: dayaners on May 14, 2014, 01:13:31 PM
I wonder if it's to create or change the icon from Messager(alert) because I like to create one with icon of success.
some like:
Code:
$.messager.alert('My Title','Here is a info message!','success');

with this icon  ✓ or other


thanks 


Title: Re: Change Icon from $.message.alert easyui...
Post by: stworthy on May 14, 2014, 05:12:45 PM
Please try this:
Code:
var m = '<div class="messager-icon icon-large-picture"></div>' +
'<div>Here is a message.</div>';
$.messager.alert('My Title', m);


Title: Re: Change Icon from $.message.alert easyui...
Post by: dayaners on May 15, 2014, 04:27:11 AM
Perfect...
Work!

thanks a lot