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
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!