I have no idea when this started but I suspect when we upgraded to 11.x control suite.
<GridColumn Field=@nameof(BookingEquipmentCommodityModel.ItemCount) Title="Count" Width="1.5rem" />As you can see, there is no numeric template and this is a simple GridColumn, but I'm getting increment arrows on any column that is numeric (Int, Decimale, Double, etc.)?
I don't want them and have no idea why I'm getting them since I don't define the column with a template for TelerikNumericTextBox??
In my attempt (which failed) to work-around this issue, I setup a template for the column using TelerikNumericaTextBox to see I could disable the arrows ... and that didn't work either?
<GridColumn Field=@nameof(BookingEquipmentCommodityModel.CommodityWeight) Editable="true" Title="Weight" Width="3rem">
<Template Context="cwContext">
@{
var cw = (BookingEquipmentCommodityModel)cwContext;
}
<TelerikNumericTextBox @bind-Value="@cw.CommodityWeight" Arrows="false"></TelerikNumericTextBox>
</Template>
</GridColumn>
still get the arrows?
Help?
