I had the same problem. Even after the links were correct, the drop-down list did not show on click. So I included the following code and it worked.
$(document).ready(function () { $(".selectpicker").selectpicker(); $(".bootstrap-select").click(function () { $(this).addClass("open"); }); });
Dinomyte
source share