I have a page where I'm able to do console.log(this.formGroup.controls) and access all the controls on the page. However, when I do console.log(this.formGroup.controls['ctrlName']) I get a null value. I also tried to cast the control as a FormControl like so: console.log(this.formGroup.controls['ctrlName']) as FormControl but still I get null.
How, can I access the individual controls to programatically add validation?