I am creating a multiselect dropdown using multiselect but the issue I am facing is that the multiselect dropdown is not being displayed when I hover over it. .dropdown-menu property in the bootstrap class is hidden.
As in the above image the 'none selected' dropdown does not open on mouse hover.
Javascript:
$(function () {
$('[id*=multidropdown]').multiselect({
includeSelectAllOption: true
});
});
HTML code
<select id="multidropdown" class="multiselect-ui form-control" multiple="multiple" >
@foreach (var item in clients)
{
<option value=@item.ToString() class="col-md-5"> @item.ToString() </option>
}
</select>