When using a numeric text box that is bound to an integer it will initialize to 0 OK, but when setting the value to 0, either with the up/down arrows or typing in 0, the 0 value disappears after the control loses focus.
this is with version 18.2.0.56, the current latest version.
see attached zip for full working demo.
<SfNumericTextBox TValue="int" @bind-Value="@myInt" Max=1000 Min=-2 Step=1 Format="####" Width="100px">
</SfNumericTextBox>
@code{
int myInt;
}
Attachment:
SFNumericTextBoxBug_f52aff8a.zip