Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, 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!

1
Vote

When TValue is int, Min validation is not working. It is working when TValue is decimal type.

Code Snippet                  :


<div
class="container">

    <div
class="row">

        <div
class="col">

            <label><span
style="color:red;">Does not work</span> TValue=int</label>

            <SfNumericTextBox
TValue="int?"
Min="10"
Max="100"
@bind-Value=@RangeNumericValue1
Step=10
StrictMode></SfNumericTextBox>

            <label>@RangeNumericValue1</label>

        </div>

        <div
class="col">

            <label><span>It Works</span> TValue=decimal?</label>

            <SfNumericTextBox
TValue="decimal?"
Min="10"
Max="100"
@bind-Value=@RangeNumericValue2
Step=10
StrictMode></SfNumericTextBox>

            <label>@RangeNumericValue2</label>

        </div>

    </div>

</div>



Sample Link : https://www.syncfusion.com/downloads/support/directtrac/330519/ra/NumericText_48d29226


Replication Procedure   :


1. Run the attached sample.

2. Focus the first numeric textbox and enter value less than 10 and focus out.

3. Value not reset to 10 (min value).

4. Focus the second numeric textbox and enter value less than 10 and focus out.

4. Value reset to 10 (min value).