I have the following code:
@Html.DropDownListFor(model => model.CountryId, Model.AvailableCountries, new { @class = "form-control", @readonly = true })
Result: link
I want to make it look something like this: link
Any solution?
I was able to solve it this way:
Use: link
Then change the code:
That:
@Html.DropDownListFor(model => model.CountryId, Model.AvailableCountries,
new { @class = "form-control", @readonly = true })
To:
@Html.DropDownListFor(model => model.CountryId, Model.AvailableCountries,
new { @class = "form-control selectpicker", @readonly = true })