Array of formGroup within mat-table for each row

It’s difficult help if we can’t get access to the code. In this stackblitz I put a simple example. See that we create a form Array like myformArray = new FormArray([ new FormGroup({ name: new FormControl(“uno”), surname: new FormControl(“one”) }), new FormGroup({ name: new FormControl(“dos”), surname: new FormControl(“two”) }), new FormGroup({ name: new FormControl(“tres”), surname: … Read more