I'm trying ti bind the formControl value on a input element dynamically in a loop.
<div *ngFor="let value of values"> <input attr.formControl="{{value}}" type="text"/> </div> This isn't working. The formControl attribute isn't a standart html attribute so I guess there has to be some other way to bind the value.
Usually the formControll is bound like this
[formControl]="name"