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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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:

<
SfTab HeaderPlacement="HeaderPosition.Top">

        

<
TabItems
>

            

<
TabItem
>

               

<
HeaderTemplateData/HeaderTemplate
>

                

<
ContentTemplate
>


                                <SfMaskedTextBox Width="100px" Mask='00.000.00' Value="@userModel.Code">                                                </SfMaskedTextBox>

                                <SfTextBox @bind-Value="@userModel.Code"></SfTextBox>


                         </ContentTemplate>            

<
/TabItem
>

     

<
/TabItems
>

<
/SfTab
>


@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