3
Answers

Validation Errors

Ramco Ramco

Ramco Ramco

May 14
301
1

Hi

  I am usng Reactive Form . I want to sho Valodation  messages on change of field

form = new FormGroup({
      name: new FormControl('', [Validators.required, Validators.minLength(3)]),
      email: new FormControl('', [Validators.required, Validators.email])
      
)
    });

Thanks

Answers (3)