Numeric textbox does not update binding when changed

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]

1 Reply 1 reply marked as answer

PM Ponmani Murugaiyan Syncfusion Team September 4, 2020 07:39 AM UTC

Hi Fergus,  

Greetings from Syncfusion support. 

We have confirmed the reported issue " NumericTextBox value not updated in input when dynamically update the value" as a bug in our end and the fix will be available in our upcoming patch release which is expected to be rolled out at September 9, 2020. You can track the status of the bug in the below feedback link from below.    


Regards,  
Ponmani M 


Marked as answer
Loader.
Up arrow icon