I have been attempting to integrate Kendo UI's switch control with AngularJS but I am encountering an issue where the value is not properly binding to the model. This is how I am implementing it:
<input type="checkbox" id="locked" kendo-mobile-switch on-label="Yes" off-label="No" ng-model="Model.IsLocked" checked="{{Model.IsLocked}}" data-role="switch">
The variable in the model seems to only store the value from the database regardless of the state on the user interface.
Another problem I am facing is that the default 'On' and 'Off' labels continue to be displayed even when customized.