New to using the components and followed the example but the dropdown is not showing the values (clicking the icon does not reveal items for selection).
Here is my code:
<RadzenDropDown @bind-Value=@values Data=@reqTypes TextProperty="@nameof(RequestTypes.RequestType)" ValueProperty="@nameof(RequestTypes.RequestTypeID)" Name="drpDown_RequestTypes"
Multiple=true AllowClear=true Placeholder="Select Request Type(s)" Style="width: 100%; max-width: 400px;" />
I see that you’ve declared explicitly render mode for your page to be interactive still it will be useful to check if the page is really interactive - a simple button will raise click event if everything is as it should.
Check also if there are some errors in the browser console - might prevent the component to work properly. You can also check using the browser element inspector what and where is rendered.
I think the control may be loading twice and that is causing the data problem. I actually see the control twice on the page and Chrome is indicating that as an issue.
Follow up on this....it is definitely creating the control twice when there is attempt to load data (I had controls on the page that were not populated with data and there was only one instance).
Working through the render modes to determine the best route