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 publishing the project (dotnet publish) of a blazor application with the Numeric Textbox component and TValue as uint, below exception occurred.


Sample: https://www.syncfusion.com/downloads/support/directtrac/general/ze/NumericDemo1434654587


<SfNumericTextBox TValue="uint" @bind-Value="@EditRecord.Ttl" Decimals="0" Format="n0"></SfNumericTextBox>


public uint Ttl { get; set; } = 3600;




Replication procedure: 


1. Unzip the above sample.

2. Open the solution and run in debug mode

3. On the first page click the add button. This should work as expected

4. Now stop running

5. Go to command line and go to the NumericDemo.Server director

6. type "dotnet publish -c Release"

7. Run the exe file in the publish directory (\NumericDemo.Server\bin\Release\net5.0\publish\NumericDemo.Server.exe)

8. In the browser go to the root page and repeat step 3. You will get the exception about the Arg_NullReferenceException


Issue screenshot: