I have this inside a component:
private formBuilder: FormBuilder
...
signupForm: FormGroup;
...
this.signupForm = this.formBuilder.group({
'name': [null, Validators.required],
'account': this.formBuilder.group({
'email': [null, [Validators.required, ...]],
'confirm_email': [null, Validators.required],
}, {validator: ValidationService.emailMatcher}),
'password': [null, [Validators.required,...]]
});
And I want to set the value for the email field. I tried this, but no luck:
this.signupForm.patchValue({'email': '[email protected]'});
But the value is nested, so whats the sintax in this case? I also tried:
this.signupForm.patchValue({'account.email': '[email protected]'});
Also searched here:
https://angular.io/docs/ts/latest/api/forms/index/FormGroup-class.html#!#patchValue-anchor
Thanks