Customize step value and hide spin buttons in Blazor NumericTextBox
24 Jun 20261 minute to read
Spin buttons allows to increase or decrease the value with the predefined Step value. The visibility of spin buttons can be set using the ShowSpinButton property.
@using Syncfusion.Blazor.Inputs
<SfNumericTextBox TValue="int?" Value=10 Min=10 Max=100 Step=2 ShowSpinButton=false></SfNumericTextBox>