Skip to content

Instantly share code, notes, and snippets.

@ganqqwerty
Last active June 18, 2019 13:42
Show Gist options
  • Save ganqqwerty/8188aef81a957508d18aee1584639705 to your computer and use it in GitHub Desktop.
Save ganqqwerty/8188aef81a957508d18aee1584639705 to your computer and use it in GitHub Desktop.
function emailConditionallyRequiredValidator(formGroup: FormGroup) {
if (formGroup.value.myCheckbox) {
return Validators.required(formGroup.get('myEmailField')) ? {
myEmailFieldConditionallyRequired: true,
} : null;
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment