Since the change in R2 2022, numeric text boxes now take up 100% of the width of their container, so the recommended way to set an elements width is with a DIV. However this is a block element, so how do I show a label (in a span) before the numeric text box on a single line?
Setting the div to inline, negates the width setting.
I'm using version v2023.2.606.
I currently have:-
<p>
<span class="lbllabel2">
Field Namew:
</span>
<div style="width:150px;">
@Html.Kendo().NumericTextBoxFor(c => c.Field)
@Html.ValidationMessageFor(model => model.RunOrder)
</div>
</p>
The only way I can see to get it working is with floats, which seems excessively complicated for such a simple (and I'd assume) common scenario.
I can say that the new versions since R2 2022 have proved extremely problematic and I have yet to see an up side to the changes.