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
This is the input checkbox to which I added switchery <input checked="checked" (change)="changeRecordStatus($event)" formControlName="RecordStatus" data-color="#3aa99e" id="RecordStatus" name="RecordStatus" type="checkbox">
(change)="changeRecordStatus($event)" is for Angular 4 to detect changes to the input.
After switchery is initialized, the (change)="changeRecordStatus($event)" from the checkbox is missing.
What am I doing wrong?
The text was updated successfully, but these errors were encountered:
This is the input checkbox to which I added switchery
<input checked="checked" (change)="changeRecordStatus($event)" formControlName="RecordStatus" data-color="#3aa99e" id="RecordStatus" name="RecordStatus" type="checkbox">
(change)="changeRecordStatus($event)"
is for Angular 4 to detect changes to the input.After switchery is initialized, the
(change)="changeRecordStatus($event)"
from the checkbox is missing.What am I doing wrong?
The text was updated successfully, but these errors were encountered: