Will you support templates in your RadZenDropDown

Just wondering if this is on your Roadmap?

I have a requirement where I need to select an item from the dropdown which has the same value across multiple records so to overcome this I need additional info in order to select the correct item.

Example.
ID Colour Item
1 Red Apple
2 Red Grape

If I only see the colour of the item in the dropdown then I may select the Grape when I wanted the Apple. I need to be able to see the Colour + Item in the dropdown.

Telerik have an approach to this.

<TelerikDropDownList Data="@myDdlData" TextField="MyTextField" ValueField="MyValueField" Value="1">
    <ValueTemplate>
        <strong>@((context as MyDdlModel).ExtraField)</strong>
    </ValueTemplate>
</TelerikDropDownList>

Yes, we can add Template for the DropDown component.

Thank you, In the meantime I'll use the telerik version but look forward to testing yours.

It is already released! :slightly_smiling_face:
https://blazor.radzen.com/dropdown

You can get the latest version from NuGet.

Yes, just looked at the repository and will look at your example there.
Great work, I wonder if others are looking and upvoting this library on github.