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 EjsTextBox inside a custom component and it's binded as follows:


    <EjsTextBox @ref="test" ValueExpression="() => Param1"></EjsTextBox>


    @code {

        [Parameter]

        public string Param1 { get; set; }

    }


It's value should reflect outside changes to Param1 and it doesn't...


I've also tryed to refresh it manually but its value doesn't change:


    

protected override void OnParametersSet()

    {

          test.Refresh();

    }


although the Refresh method is called and Param1 has it's value changed.


¿Is this a bug?