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
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
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?