Customize step value and hide spin buttons in Blazor NumericTextBox

4 Nov 20251 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>

Hiding Spin Button in Blazor Numeric TextBox