I use a precompiled list to be displayed in the dropdown - 2 properties per entry are important - the Name and an ID (data stem from sql-server database originally)
The dropdown is build, filled and shows only the names as demanded. Now when the form is displayed I want the dropdown to preselect the entry over the provided id.
I've already tried some of the suggestions here and whatever I do - its only displaying the placeholder text
<RadzenDropDown Data=@datalist @bind-Value=@mydata.ga_id TValue="int" AllowClear="false"
Placeholder="Wähle aus ..."style="width: 100%;" TextProperty="Name" ValueProperty="ga_id"
Name="Ga_Id" Change="@(args => OnChange(args, "Ga_ID"))" />
What do I need to change? Or does it only work on string like so many examples show?