I have a large application that uses a lot of kendo numeric textboxes. As part of my current project, I have added a custom class to all of these elements.
My textboxes will look something like:
@(Html.Kendo().NumericTextBox()
.Name("Transplanted")
.HtmlAttributes(new {@class="form-control"})
.Value(Model.Transplanted)
.Decimals(0)
.Format("#")
.Min(0)
)
As soon as I add the custom class, the formatting stops working. Has anyone come across this issue before? I can add styles without an issue, but there is something about adding a class to the input that is breaking the formating.