unable bind button control to div tag using [innerHTML] in angular 2

30 Views Asked by At

I'm trying to bind dynamically generated markup to a div tag using [innerHTML] . I'm successful in binding markup that consists of Unorderd list. But when I try to bind markup that has button control , it is getting encoded and there by removes the button.

<div [innerHTML]="Element.Markup"></div>

the Element.Markup looks like

<button type='button'>Click Here</button> Some Text...

When i run the app, the button tags are removed and the web page display plain text like

Click Here Some Text..

Is there any other way to get around this?

0

There are 0 best solutions below