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 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:
although the Refresh method is called and Param1 has it's value changed.
¿Is this a bug?