I've created a FormArray with a List of formGroups.
Now, I am trying to disable the control of each formGroup by looping FormArray.
this.otcDocumentTrackerForm.controls.forEach(s => {
s.controls["isNotApproved"].disabled();
s.controls["CREDIT_OR_OPS_REMARKS"].disabled();
});
However, this is not working for me. Can anyone give me a solution for this?