I am trying to do validation using the and . This works fine when user tabs out of the input without filling. B
Angular 8 has a new forms method: markAllAsTouched();
markAllAsTouched();
This will mark a control/form and ALL DESCENDANTS as touched!!!
So:
this.form.markAllAsTouched();
Is the solution.