When i put an anchor element in someweher in a angular 2 Component like this,
<a [routerLink]="['/LoggedIn/Profile']">Static Link</a>
everything is working fine. When clicking the link, the angular router routes me to the target component.
Now i would like to add the same link dynamically. Somewhere in my app i have a "notification component", which single responsibility is to display notifications.
The notifications component does something like this:
<div [innerHTML]="notification.content"></div>
where notification.content is the string variable in the NotificationComponent class, and contains the HTML to display.
The notification.content variable can contain something like
<div>Click on this <a [routerLink]="['/LoggedIn/Profile']">Dynamic Link</a> please</div>
Everything works fine and shows up on my screen, but nothing happens when i click the dynamic link?!
Is there a way to let the angular router work with this dynamically added link???
ps. i know about DynamicComponentLoader, but i really need a more unrestricted solution where i can send all kinds of HTML to my notification component, with all kind of different links....