I am trying to replace the document.getElementById
from:
target = document.getElementById('checkBox') as HTMLInputElement;
I have tried:
- adding #target in html
- import ElementRef and ViewChild
- add @ViewChild('target') public target: ElementRef;
- this.target.nativeElement.checked = false;
and this does not seem to be working.
you don't have to use template reference (#target) or ViewChild to change the value of the checkbox input.
you have two options:
1- Two-way Data Binding
create a property inside your component and bind it to the input(checkbox) using
[(ngModel)]="property_name"
now you can change the value of this property and the checkbox will be changed2- Reactive form
if you are using this input inside a reactive form, just add a FormControl to the FormGroup you are using and use this FormControl to change the value