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 />
<br />
@code {
InspectHeadModel datasource = new InspectHeadModel();
protected override async Task OnInitializedAsync()
{
datasource = await InspectService.GetInspectOne(id);
}
}