Can anyone help me to add search bar as the first value of the dropdown? I used ASP.NET MVC. This is my code
<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>