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

Problem rendering NumericTextBox

1 Answer 115 Views
NumericTextBox
This is a migrated thread and some comments may be shown as answers.
Bilal
Top achievements
Rank 2
Bilal asked on 31 May 2015, 04:13 PM

Hello,

I have this dojo: http://dojo.telerik.com/@bhaidar/EsOsu/2

 

For some reason, the NumericTextBox is not rendering correctly. Any idea what might be the reason?

 

Thanks,
Bilal

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 02 Jun 2015, 05:12 PM
Hi Bilal,

The NumericTextBox appearance is broken by the form-control class, which enforces an unexpected display:block style. One option is to add an inline display:inline style to the affected <input> elements. Another option is to add one more CSS class to the <input>s (e.g. my-kendo-form-control) and use the following CSS rule:

input.my-kendo-form-control {
    display: initial;
}


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
Bilal
Top achievements
Rank 2
Answers by
Dimo
Telerik team
Share this question
or