I am looping over a list of items using *ngFor
, generating new CheckBox elements.
I need to determine the checked state of each CheckBox
.
Normally I would create a reference to the box using @ViewChild
but an unsure how to accomplish this when the boxes are being dynamically generated.