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!>
Thanks for joining our community and helping improve Syncfusion products!
I have a problem related to the SfMaskedTextBox component, in which it is not filled with
the value of the object(@bind-Value).
I have already tested whether the variable arrives correctly and it is correct, so much so that I test it together with an SfTextBox,
and correctly shows the value of the object.
One observation: I noticed that the problem occurs when I use SfTab on the same page as SfMaskedTextBox, I did tests removing the SfTab and the SfMaskedTextBox displays the value of the object, I don't know if there is any relationship.
Follow the maskedTextBox and textbox code:
<SfMaskedTextBox Width="100px" Mask='00.000.00' Value="@userModel.Code"> </SfMaskedTextBox>
<SfTextBox @bind-Value="@userModel.Code"></SfTextBox>
</ContentTemplate>
@code{
public CESTModel userModel;protected override async Task OnInitializedAsync(){UserService userService = new();userModel = await userService.search(id);}}
Best regards to the SyncFusion developer and support team