Utilizing the kendo-mobile-switch
in my AngularJS project has been successful on pages. However, when attempting to incorporate it into an ngDialog modal, a problem arises with the transform: translateX()
property. Instead of shifting 27 pixels to the right, it remains stagnant.
To address this issue, I attempted to remove the ngdialog
CSS classes from ngDialog.min.css
, eliminating all references in my module. Despite these efforts, the problem persists as I am unable to adjust the position of my kendo-mobile-switch
by 27 pixels to the right.
Below is a snippet of my code:
<div ng-controller="navBarLimitedUseKeyCtrl" focus-group="" focus-group-head="stop" focus-group-tail="loop">
<div kendo-mobile-switch
k-on-label="'YES'" k-off-label="'NO'" ng-model="var.oneShot"
k-on-change="onChangeOneShot()" data-qaid="chk-oneShot-default">
</div>
</div>
Has anyone encountered a similar issue with transform: translateX()
involving kendo-mobile-switch
within an ngDialog
while working with AngularJS? If so, how was it resolved?
The visual representation of the issue can be viewed here: https://i.sstatic.net/4NRL9.png
I am experiencing the same problem and using Google Chrome Version 72.0.3626.81 (Official Build) (64-bit).