Disable dropup feature using Bootstrap Select

前端 未结 3 1643
轻奢々
轻奢々 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:21

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

    0 讨论(0)
  • 2020-12-03 17:23

    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;
    
    0 讨论(0)
  • 2020-12-03 17:25

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

    dropupAuto: false,

    0 讨论(0)
提交回复
热议问题