Is it possible to do icons in dropdown fields in a similar way to how you can do and icons in FormFields?
Hi @kbreenbondie,
You can use ValueTemplate to achieve this:
<RadzenDropDown ... >
<ValueTemplate>
<RadzenStack Orientation="Orientation.Horizontal">
<RadzenIcon Icon="home" />
<span>Text</span>
</RadzenStack>
</ValueTemplate>
</RadzenDropDown>
Have a look at the DropDown with template demo for more details.