Hello in MVC I'm using a NumericTextBox like this:
@Html.EJS().NumericTextBox("qty").Value(0).Min(0).Max(10).Step(1).Render()
I have 2 issues here:
1) Value 0 result in a blank value in the numeric textbox instead of 0.
2) You cannot (correctly) go over 10, but you can go negative, ignoring Min(0). Please check che same issue in your demo page for the Percentage Textbox, where you can go <0%:
https://aspnetmvc.syncfusion.com/NumericTextBox/DefaultFunctionalities#/material
Thank you for your help.
Daniele