是否可以在ngx-modialog对话框的标题中添加图标?

时间:2019-05-03 15:06:15

标签: angular typescript icons

我们使用许多对话框,其中许多基于ngx-modialog库。到目前为止,效果很好,对于现有对话框,我们现在想在标题的左上角添加一个图标。

我尝试使用.title和.titleHtml,但是显然它们没有被编译。我也尝试使用,但什至没有显示矩形,也没有做其他任何事情。

该图像是svg图像。

标题的

$ {title}效果很好。但是,当我尝试添加时,这是失败的。尽管它似乎确实在图标应显示的位置显示了一个空白矩形。

 this.modal.showClose(true);
 this.modal.isBlocking(true);
 this.modal.titleHtml('<img imgkey="icon16.svg" class="icon"><h3 class="modal-title">Something</h3>');
 this.modal.body('something else');

 this.modal.open();

我想让svg图标出现在标题的左侧。

有人知道它是否可以实现?如果是的话,怎么办?

0 个答案:

没有答案