Skip to content

Instantly share code, notes, and snippets.

@ganqqwerty
Last active June 19, 2019 07:00
Show Gist options
  • Save ganqqwerty/9d93d6efd11879931c2f15afe32be72a to your computer and use it in GitHub Desktop.
Save ganqqwerty/9d93d6efd11879931c2f15afe32be72a to your computer and use it in GitHub Desktop.
function emailConditionallyRequiredValidator(formControl: AbstractControl) {
if (!formControl.parent) {
return null;
}
if (formControl.parent.get('myCheckbox').value) {
return Validators.required(formControl);
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment