Angular 4 Form Validators – minLength & maxLength does not work on field type number
Used it like following and worked perfectly : phone: [”, [Validators.required, Validators.min(10000000000), Validators.max(999999999999)]], customValidationService : import { AbstractControl, ValidatorFn } from ‘@angular/forms’; export class customValidationService { static checkLimit(min: number, max: number): ValidatorFn { return (c: AbstractControl): { [key: string]: boolean } | null => { if (c.value && (isNaN(c.value) || c.value < min || c.value … Read more