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

Unable to resolve dependency tree error when installing npm packages

This is not related to an HTTP proxy. You have dependency conflict (incorrect and potentially broken dependency) as it says, so try to run the command with –force, or –legacy-peer-deps. If it doesn’t take effect, the temporary solution is using prior versions of the Node.js (downgrading the Node.js version) as it causes this kind of … Read more