I found a solution which worked for me. I forgot two parameters in the updateValueAndValidity function.
- onlySelf: will only update this
FormControlwhen true. - emitEvent: will cause
valueChangesevent to be fired when true.
So as result you will get something like:
FormGroup.updateValueAndValidity({ onlySelf: false, emitEvent: true });