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

Hello,


This might be a regression of this issue.


SfNumericNumericTextBox doesn't display anything on Desktop Chrome when using type=number. Using type=number brings up the numeric keyboard on mobile devices which is very useful.


@using Syncfusion.Blazor.Inputs

@* Both SHOULD display "42" *@

@* Displays nothing on desktop Chrome and "42.00" on mobile Chrome *@

<SfNumericTextBox type="number" @bind-Value="myInt"></SfNumericTextBox>

@* Displays "42" but doesn't bring up the numeric keyboard on mobile Chrome *@

<SfNumericTextBox @bind-Value="myInt"></SfNumericTextBox>

@code {

    int myInt = 42;

}