How to set value of a form control which is inside a form array in Angular reactive form
Advertisements I’ve a reactive form: this.leDetailsUpdateForm = new FormGroup({ entityNameArray: new FormArray([ new FormGroup({ id: new FormControl(), entityName: new FormControl(), entityNameStartDate: new FormControl(), // <—– this i want to set entityNameEndDate: new FormControl(), entityNameStatus: new FormControl(), status: new FormControl(), }), ]), }) I’m trying to set it after some calculations as follows : setStartDates(e: any)… Read More How to set value of a form control which is inside a form array in Angular reactive form