Reputation: 707
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
Reputation: 64
@Html.DropDownList
("SelectedFieldId", new SelectList(Model.Fields, "FieldID","NiceName",
Model.SelectedFieldId),
new { @class = "form-control", role = "menu",datatoggle = "dropdown" })
Upvotes: 1