I have a nested ngFor Checkbox.. All i need is to set the NgModel to check if the check box is checked??
<ion-item-group *ngFor="let patient of Patients; let i= index">
<ion-item-divider color="light">{{patient.conditionGroup}}</ion-item-divider>
<ion-item *ngFor="let condition of patient.conditions; let j= index">
<ion-label>{{condition}}</ion-label>
<ion-checkbox id="{{condition}}" [(ngModel)]="checkStatus[i][j]" (ionChange)="mylist(i,j,condition)" color="danger"></ion-checkbox>
</ion-item>
</ion-item-group>
my controller is like this..
{
this.checkStatus=[];
this.Patients = [];
for(var s=0;s<this.Patients.length;s++)
{this.checkStatus[s]=[];}
}
How do i check if the checkbox is checked.. error
ERROR TypeError: Cannot read property '0' of undefined
Patients
[
{
"conditionGroup": "Family Care",
"conditions": [
"Head",
"Poisoning",
"Stroke"
]
}
]
in myList() i need to push the checked options into an array..
Code for Controller
Code for Html