I'm trying to add a search box in my dropdown list, I try with many ways but seem it not working for me. can someone assist me, please?
Thank you so much
Here my html code:
<div class="col-md-3">
@Html.LabelFor(model => model.BankID,"Bank Name", new { @class = "control-label" })
@Html.DropDownListFor(model => model.BankID,
new SelectList(Enumerable.Empty<SelectListItem>(), "Value", "Text"), "Select BankName",
new { id = "BankName", @class = "form-control input-sm text-uppercase" })
@Html.ValidationMessageFor(model => model.BankID)
</div>