43

I have a FormArray and need to iterate through each of its members.

I see there is a get method in the docs, but I don't see where to get the keys, or even the length.

How do I iterate a FormArray?

BBaysinger
  • 6,614
  • 13
  • 63
  • 132

4 Answers4

66

You have a property controls in FormArray which is an array of AbstractControl objects. Check the specific documentation for FormArray and you will see they also inherit from AbstractControl like the FormControl you posted.

Be aware that in the controls array you can have again inside FormArray or FormGroup objects besides FormControl objects because there can be nested groups or arrays.

Here is simple example:

for (let control of formArray.controls) {
   if (control instanceof FormControl) {
      // is a FormControl
   }
   if (control instanceof FormGroup) {
      // is a FormGroup  
   }
   if (control instanceof FormArray) {
      // is a FormArray
   }
}
Aleš Doganoc
  • 11,568
  • 24
  • 40
  • 1
    I actually figured it out moments ago. Thanks for the additional info. – BBaysinger Mar 20 '18 at 23:12
  • 2
    Dunno why that's not documented. – BBaysinger Mar 20 '18 at 23:13
  • 3
    [This SO answer](https://stackoverflow.com/a/42235220/6826260) helped me: `this.form = this.fb.group({ userIds: this.fb.array([]) }); const userIds = this.form.controls.userIds as FormArray; userIds.value.forEach(key => { this.clinet.updateContactGroup(key, this.groupId).subscribe();} );` – G. Siganos Sep 18 '19 at 12:51
  • You can iterate through `formArray.controls`, please see the answer below – Ousama Nov 25 '20 at 06:43
28

I solved this problem by looping through formArray.controls :

  formArray.controls.forEach((element, index) => {
    ...
  });
Ousama
  • 2,176
  • 3
  • 21
  • 26
4

If someone needs helps with iterating them in template (like I did), you can do this.

In this case we have FormArray where each child is FormControl

get myRows(): FormControl[] {
    return (this.<your form group>.get('<field name>') as FormArray).controls as FormControl[];
  }

And in template

*ngFor="let row of myRows"
O-9
  • 1,626
  • 16
  • 15
1

So, I had same situation, in my case:

adjustmentAmountArray: FormArray;

And I need sum of contingencyUsed of every FormArray item.

 adjustmentAmountArray.controls.reduce((acc, curr) => {
    return acc + curr.value.contingencyUsed;
 });
Petro Darii
  • 691
  • 5
  • 10