help.
there is a problem I RTL and Spinners off for NumericTextBox. im using the lest version on Kendo UI.
see attach image:
the code:
there is a problem I RTL and Spinners off for NumericTextBox. im using the lest version on Kendo UI.
see attach image:
the code:
<head> <title>RTL Kendo Test:</title> <script src="js/jquery-1.11.1.min.js"></script> <script src="js/kendo.all.2014.1.318.min.js"></script> <link href="/Css/kendoui/kendo.common.core.min.css" rel="stylesheet" /> <link href="/Css/kendoui/kendo.blueopal.min.css" rel="stylesheet" /> <link href="/Css/kendoui/kendo.rtl.min.css" rel="stylesheet" /></head><body> <div id="example" class="k-content"> <div class="demo-section k-rtl"> <h2>RTL : spinners: false</h2> <input id="numerictextbox" /> </div> <script> $(document).ready(function () { $("#numerictextbox").kendoNumericTextBox({ spinners: false }); }); </script> </div></body>