Welcome to the .NET MAUI feedback portal. We’re happy you’re here! If you have feedback on how to improve the .NET MAUI, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
The SfNumericInput only replaces the Value property with Minimum or Maximum once the focus is lost, even if the ValueChangedMode is set to OnKeyFocus.
The suggestion here is to enforce the Minimum and Maximum while the user types new digits when the ValueChangedMode is set to OnKeyFocus.
<sf:SfNumericEntry
ValueChangeMode="OnKeyFocus"
Minimum="0"
Maximum="10"/>Actual: any value smaller than 0 or larger than 10 can be entered and theenforced only when the SfNumericEntry loses focus.Minimum and Maximum areExpected: when the ValueChangeMode="OnKeyFocus", the Minimum and Maximum are enforced at each value change, not allowing the user to type a value smaller than 0 or larger than 10.