Property 'controls' does not exist on type 'AbstractControl' - angular4
问题 there are lots of blogs already posted for this error but none is specified for angular4. I am adding and removing dynamic controls on the form add controls to the form during intialization ngOnInit() { this.lienHolder = this._fb.group({ emailAddress: ['', [Validators.required, Validators.email]], policyDetails: this._fb.array([ this.initPolicyTemplate(), ]) }); } initPolicyTemplate() { return this._fb.group({ policyNumber: ['', [Validators.required, Validators.pattern("(^[^0][A-Z]{1}[0-9]*$)