Would someone be able to assist me in adding a search bar as the primary value of the dropdown menu? I am using ASP.NET MVC and this is my current code snippet.
<div class="col-md-8">
<div class="dropdown">
<div class="chzn-dd-width">
@Html.DropDownListFor(
model => model.DriverId,
Model.Drivers,
new { @id = "driverDropDown", @class = " form-control chosen-search" })
</div>
</div>
</div>