Angular 9 Formarray search operation executing for only first dynamic control

if you use @ViewChild, viewChild only get the first element. if you’re using @ViewChildren you need get create so many event for each Element of the QueryList @ViewChildren(‘input’) inputs:QueryList<ElementRef> this.inputs.forEach(input=>{ fromEvent(input.nativeElement,’keyup’) }) Anyway this NOT work -works if the array was fixed elements at first. Well, you can subscribe to inputs.changes and bla-bla-bla The way … Read more