In my working on angular 8 application where I am using primeng checkbox and I have some issue.Checkbox data is coming from db. So if status==0, I have to make it unchecked and if status==1, it should be selected even if load the table(default). I tried many ways and its not working. Can any one please point me the issue or any suggestions will be of great help.
onStatusChange(id: number,status: number) {
this.id = id;
console.log('Id', id);
console.log('Checked');
this.status = status;
console.log('Status', status);
}
<p-checkbox [value]="text.id" [(ngModel)]="status" binary="true" (onChange)="onStatusChange(TextID,status)"></p-checkbox>
{"Text":
[
{"ID":"1","Name":"Text","textContent":"content1,"status":"1"},
{"ID":"2","Name":"Text","textContent":"content1,"status":"1"},
{"ID":"3","Name":"Text","textContent":"content1,"status":"0"}
]
}
text.IsActive[text.IsActive==1?'true':'false'
I am getting the required data in onStatusChange to make it active or inactive for updating it to DB. But problem lies in making checkbox checked based on the selection while loading the data. Please help me.. stuck here for the last few days..
Instead of using the status directly as a number, you can map it to
true
orfalse
with!!
If
1
or0
should be a string then:this allows you to use the values in the checkbox normally