Reputation: 551
first I have checkbox code like this, and the checkbox can auto checked
<ion-checkbox color="dark" checked="true">
but after I add the ngModel, why the checkbox cannot auto checked?
<ion-checkbox color="dark" checked="true" [(ngModel)]="data.remember">
Upvotes: 1
Views: 443
Reputation: 222542
<ion-checkbox color="dark" checked="true" [(ngModel)]="data.remember">
just assign your ngModel variable to true
this.data.remember = true;
Upvotes: 1