How to identify which item in FormArray emitted valueChanges event?
问题 In Angular , is there a way to identify which FormGroup / FormControl in a dynamic FormArray emitted the valueChanges event? My FormArray is dynamic. It starts out empty and users could add a FormGroup to the FormArray by clicking a button. When valueChanges, I need to re-validate the control. Since I dont know which control emitted the event, I loop through the entire FormArray and validate all FormGroup / FormControl even though only one control changed - and this is every time when