Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable dropup feature using Bootstrap Select

Tags:

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/

like image 774
Anthony_Z Avatar asked Nov 12 '13 16:11

Anthony_Z


1 Answers

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; 
like image 109
caseyjhol Avatar answered Dec 28 '22 23:12

caseyjhol