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!>
Thanks for joining our community and helping improve Syncfusion products!
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;}