Angular 2 Checkbox Validations Class

232 Views Asked by At

I have an checkbox input type inside of a formGroup with Validators.required set. The problem is when i make a click on the checkbox validations class ng-untouched is not changint into ng-touched. How can i fix this problem ?

Thank's

1

There are 1 best solutions below

1
On

ng-touched only shows up after the input is no longer in focus. So check the checkbox, and then then click somewhere else on the screen after. Does that fix it?