You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.
Hey,
since the refactor of the controlValueAccessors, the boolean (checkbox and toggle) are not initialized with form.
It's because in the value-accessor.ts in
writeValue
we usethis.el.nativeElement.value
and checkbox needsthis.el.nativeElement.checked = value;
.I don't know if its a bug or if you want to change de ion-checkbox.
Here is how I fixed this:
boolean-value-accessor.ts
Cheers!
The text was updated successfully, but these errors were encountered: