I want to show a dropdown list with cities and flags. Like this (sorry example made in Excel)...
I tried this. But this code doesn't work.
<select id="address" class="form-control" placeholder="Address">
@foreach (var city in Model.City)
{
<option value="@(city.Id)">@(city.Name) [<img src="~/images/'@(city.Country.CountryIsoCode3)'.png/" width="16" height="16">]</option>
}
</select>
Can someone help me?
I see something with "<select class="selectpicker">
" by using Bootstrap. Which js, css files do I need exactly? I think that this could be the solution...