ngx-validators icon indicating copy to clipboard operation
ngx-validators copied to clipboard

How to validate on submit?

Open Almis90 opened this issue 4 years ago • 0 comments

Let's say I have the following code

<form>
  <input type="text" [(ngModel)]="model.email" name="email" #formControl="ngModel" email />
  <span *ngIf="formControl.hasError('normalEmailRule')">Is not a email</span>
</form>

When I type something it shows the error, but I also want to show the error when the user clicks on submit.

Almis90 avatar Aug 24 '20 14:08 Almis90