You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to support binding Min and Max Date validators to another FormControl similar to the
EqualTo validator?
For example:
let maxDateControl = new FormControl('', Validators.required);
let minDateControl = new FormControl('', CustomValidators.maxDate(maxDateControl));
The text was updated successfully, but these errors were encountered:
Hi
Would it be possible to support binding Min and Max Date validators to another FormControl similar to the
EqualTo validator?
For example:
let maxDateControl = new FormControl('', Validators.required);
let minDateControl = new FormControl('', CustomValidators.maxDate(maxDateControl));
The text was updated successfully, but these errors were encountered: