Himaan Singh
Himaan Singh

Reputation: 707

Dropdownlist in mvc with bootstrap theme

i have a Dropdownlist that contains fields from the model that i have created

as below:

@Html.DropDownList("SelectedFieldId", new SelectList(Model.Fields, "FieldID","NiceName", Model.SelectedFieldId), new { @class = "dropdown", role = "menu",datatoggle = "dropdown" })

this takes default theme of mvc4, but i want to use bootstrap theme. I have included all bootstrap files in bundles and everything is fine except i dont know how to make this type of dropdown show in bootstrap theme. Any help will be much appreciated thank you so much for your time.

Upvotes: 0

Views: 376

Answers (1)

Itz Zaib
Itz Zaib

Reputation: 64

@Html.DropDownList
    ("SelectedFieldId", new SelectList(Model.Fields, "FieldID","NiceName",
  Model.SelectedFieldId),
 new { @class = "form-control", role = "menu",datatoggle = "dropdown" })

Upvotes: 1

Related Questions