DEV Community

Ashish Gupta
Ashish Gupta

Posted on

Answer: Custom dialog not showing info icon

Icons generally visible on buttons. As I have done in the below snippet.

$('#custom-alert').dialog({
            title: title,
            modal: true,
            width: 600,
            height: 320,
            closeText: '',
            buttons: [{
                icon: "ui-icon-info",
                click: function () {
                    $(this).dialog('destroy').remove()
                }
            }]
        });

Top comments (0)