I have a dialog box with 2 dropdown lists. When I select a value from dropdowlist1 it should update dropdownlist2. The changeevent does fire and update the datasource; however, the dropdownlist2 does not refresh with the new data. I do call StateHasChanged after the list is updated but after some research, I understand that it only applies to the parent.
How do I refresh a component on a blazor dialog? Maybe there should be a dialogComponent.StateHasChanged() but I do not see one in version 20.4.0.52.
Thanks Richard