Adding in the Dropdown Menu a Image

Hello!
I am building a registration page where I need the user's phone number with country code. I want to add the correct country flag next to the country code ("DE | AC | GB") in the dropdown menu. I'm getting th Country Codes from a nuget packed called "libphonenumber"

This is my Dropdown Menu:

This is the HTML to my Dropdown

            AllowFiltering="true"
            FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive"
            FilterOperator="StringFilterOperator.StartsWith"
            TValue="string"
            Class="w-100"
            @bind-Value=@_value>

And here im adding the country codes in the Dropdown

    public HashSet<string> CountryCodes =>PhoneNumberUtil.GetInstance().GetSupportedRegions();

If you need any more Infos just ask :smiley:

Hi @Obind,

You need to use the Template of RadzenDropDown. Check our online demo for an example.

I do not find among the components which accepts an image

You can use RadzenImage or the <img> element.