In my Reactive Form
, I have added validations for the fields. The form is at https://stackblitz.com/edit/angular-jx7fdu
I want that the validation should happen once the user has left the input field. How could I do it? I found this answer on SO but it seems it would work if I use FormControl
directly and not with FormBuilder
because a FormBuilder
doesn't take AbstractControlOptions
parameter it seems.