Customize step value and hide spin buttons in Blazor NumericTextBox

18 Jan 20221 minute to read

The 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 NumericTextBox