I am using bootstrap 4 in an application and I need to implement a search on some of the select.
This is the way the select are:
<select class="form-control selectpicker" id="mySelect1">
<option value="0">No Selected</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
I tried to do it with several plugins like bootstrap-select
but only work with bootstrap 3 and I can not find a way to do it with bootstrap 4.