Disable dropup feature using Bootstrap Select

♀尐吖头ヾ 提交于 2019-11-26 21:29:01

问题


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 of the screen.

In this case I do not want it to drop up but I can't find where to disable this.

Bootstrap select: https://developer.snapappointments.com/bootstrap-select/


回答1:


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;



回答2:


This setting can be changed in the bootstrap-select.js file by editing the dropupAuto option to:

dropupAuto: false,




回答3:


You can use this to disable the picker. $('.selectpicker').prop('disabled', true);



来源:https://stackoverflow.com/questions/19934518/disable-dropup-feature-using-bootstrap-select

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!