I have an angular project in which I am using a PrimeNG checkbox component but there is an issue when I am trying to set the checkbox's default value to checked. I even tried binding [checked]
property but I guess it is not known to p-checkbox.
HTML file
<p-checkbox name="checkboxName" [(ngModel)]="checked"
binary="true" label="Perform Notifications"></p-checkbox>
{{checked}}
Component file
export class XYZ{
checked: boolean = true;
}
When that gets loaded, I can see value of checked variable as 'true' below in HTML page but the checkbox is blank or unchecked.
For me it was none of the answers listed. If you have your checkbox in the middle of a form, you also have to give your checkbox a unique name to identify it within the form. For example:
Without the name, my checkbox was always false by default, regardless of its ngModel, and toggling it was not changing the boolean it was tied to.