I\'m using Bootstrap Select to style some select fields inside an accordion. Bootstrap select has a feature where it will make your dropdown dropup if it is near the bottom
You can use this to disable the picker. $('.selectpicker').prop('disabled', true);
Options can be passed via JavaScript or data attributes:
$('.selectpicker').selectpicker({
dropupAuto: false
});
or
<select class="selectpicker" data-dropup-auto="false">
<option>Mustard</option>
<option>Ketchup</option>
<option>Relish</option>
</select>
You can also set this globally:
$.fn.selectpicker.Constructor.DEFAULTS.dropupAuto = false;
This setting can be changed in the bootstrap-select.js file by editing the dropupAuto option to:
dropupAuto: false,