You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
I have a Blazored Typeahead component that has Value, ValueChanged, Value Expression. In my component, the value is bound to _currentData. I have a cascading param:
protected override async Task OnParametersSetAsync()
{
await base.OnParametersSetAsync();
if (_currentData! = CurrentIlmast)
{
_currentData = CurrentIlmast;
// should not be necessary?? await InvokeAsync(StateHasChanged);
}
}
When I receive data from the parent component's cascading value/param, the data comes through fine (as I can see the UI in my div above the typeahead get updated with the new vals from the cascading params), BUT the value of the typeahead isn't being updated in the input. Any help?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have a Blazored Typeahead component that has Value, ValueChanged, Value Expression. In my component, the value is bound to _currentData. I have a cascading param:
... more stuff for the templates...
In On Params Set:
When I receive data from the parent component's cascading value/param, the data comes through fine (as I can see the UI in my div above the typeahead get updated with the new vals from the cascading params), BUT the value of the typeahead isn't being updated in the input. Any help?
The text was updated successfully, but these errors were encountered: