Is there a possibility to have a dropdown with hardcoded values without having to call it from an external list(as shown in your online documentation) like the below.
<RadzenFormField Text="Gender" Variant="Variant.Outlined">
<ChildContent>
<select>
<RadzenDropDown Name ="f" @bind-Value=employee.f />
<option value="">- GenderGender</option>
<option value="mail">mail</option>
<option value="wom">wom</option>
</select>
</ChildContent>
<Helper>
<RadzenRequiredValidator Component="Name" Text="ุงูุฌูุณ ู
ุทููุจ." />
</Helper>