This is a migrated thread and some comments may be shown as answers.

NumericTextBox , RTL spinners off still show a spinner button.

3 Answers 123 Views
NumericTextBox
This is a migrated thread and some comments may be shown as answers.
yaniv
Top achievements
Rank 1
yaniv asked on 16 May 2014, 02:22 PM
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:
<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>

3 Answers, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 19 May 2014, 07:30 AM
Hello Yaniv,

Please add the following CSS rule to your application:

.k-rtl .k-numeric-wrap.k-expand-padding
{
   padding-left: 0;
}

This will be present in the next versions of Kendo UI.

Regards,
Dimo
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
yaniv
Top achievements
Rank 1
answered on 19 May 2014, 08:08 AM
hello.

I did it but there is still a problem  , the round corner dose not look ok.
0
Dimo
Telerik team
answered on 20 May 2014, 04:19 PM
Hello Yaniv,

The RTL CSS file should be registered after the common CSS file and before the theme CSS file.

Regards,
Dimo
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
NumericTextBox
Asked by
yaniv
Top achievements
Rank 1
Answers by
Dimo
Telerik team
yaniv
Top achievements
Rank 1
Share this question
or