Disable dropup feature using Bootstrap Select

前端 未结 3 1786
轻奢々
轻奢々 2020-12-03 16:54

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

3条回答
  •  攒了一身酷
    2020-12-03 17:23

    Options can be passed via JavaScript or data attributes:

    $('.selectpicker').selectpicker({
        dropupAuto: false
    });
    

    or

    
    

    You can also set this globally:

    $.fn.selectpicker.Constructor.DEFAULTS.dropupAuto = false;
    

提交回复
热议问题