Numeric Textbox displays 0 until get focus

In the page below OnInitializedAsync  retrieves a data record  - datasource.  various fields from datasource display on the page. 

When the page initializes  the numeric textbox displays 0  ( see top image Odometer textbox ), if you click the Odometer textbox ( see bottom image), the value displays. no other text boxes on the page has the issue, only the SfNumericTextBox.   Prior to latest Syncfusion component update, this worked properly 

@page "/contactsheet/{id:int}/{cid:int}"

@using Inspection.Data
@inject InspectService InspectService


<SfNumericTextBox @[email protected] ShowSpinButton="false" Width="160px" CssClass="e-outline">Odometer</SfNumericTextBox>
<br />
<SfTextBox @[email protected] width="160px" CssClass="e-outline">License</SfTextBox>
<br />



@code {

    InspectHeadModel datasource = new InspectHeadModel();

    protected override async Task OnInitializedAsync()
    {
        datasource = await InspectService.GetInspectOne(id);
    }

}



2 Replies 1 reply marked as answer

BE Benjamin September 7, 2020 02:05 AM UTC

I'm seeing the same issue, looks like it was confirmed as a bug.

https://www.syncfusion.com/forums/157450/18-2-0-55-numerictextbox-not-render-new-value


SN Sevvandhi Nagulan Syncfusion Team September 7, 2020 05:30 AM UTC

Hi Clark/Benjamin,  

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,  
Sevvandhi N 


Marked as answer
Loader.
Up arrow icon