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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

2
Votes

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.

For example:

<sf:SfNumericEntry
ValueChangeMode="OnKeyFocus"
Minimum="0"
Maximum="10"/>

Actual: any value smaller than 0 or larger than 10 can be entered and the
Minimum and Maximum are
enforced only when the SfNumericEntry loses focus.

Expected: 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.