I have to integrate third-party elements into my Angular(4.3.x) application. They look something like:
<any-widget id="123"></any-widget>
I already made Angular produce no error by adding schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
to app.module.ts. But unfortionally i can't but anything to it. I tried:
<any-widget [id]="id"></any-widget>
and
<any-widget id="{{id}}"></any-widget>
But id is not displayed at all. Any idea how to make this work?