Hi,
If you run the following code the text value out side the numeric textbox updates but the actual value in the textbox does not update.
[CODE]
@page "/testnumericbind"
@using Syncfusion.Blazor.Inputs
<p>NumericTextBox value is: @NumericValue</p>
<SfNumericTextBox TValue="int?" @bind-Value="@NumericValue"></SfNumericTextBox>
<button @onclick="@(() => NumericValue = 25 )">UpdateValue</button>
@code {
public int? NumericValue { get; set; } = 10;
}
[/CODE]