boundary |
string | element |
'clippingParents' |
Overflow constraint boundary of the dropdown menu (applies only to Popper's preventOverflow modifier). By default it's 'clippingParents' and can accept an HTMLElement reference (via JavaScript only). For more information refer to Popper's detectOverflow docs. |
reference |
string | element | object |
'toggle' |
Reference element of the dropdown menu. Accepts the values of 'toggle' , 'parent' , an HTMLElement reference or an object providing getBoundingClientRect . For more information refer to Popper's constructor docs and virtual element docs. |
display |
string |
'dynamic' |
By default, we use Popper for dynamic positioning. Disable this with static . |
offset |
array | string | function |
[0, 2] |
Offset of the dropdown relative to its target. You can pass a string in data attributes with comma separated values like: data-bs-offset="10,20"
When a function is used to determine the offset, it is called with an object containing the popper placement, the reference, and popper rects as its first argument. The triggering element DOM node is passed as the second argument. The function must return an array with two numbers: [skidding, distance] .
For more information refer to Popper's offset docs.
|
autoClose |
boolean | string |
true |
Configure the auto close behavior of the dropdown:
true - the dropdown will be closed by clicking outside or inside the dropdown menu.
false - the dropdown will be closed by clicking the toggle button and manually calling hide or toggle method. (Also will not be closed by pressing esc key)
'inside' - the dropdown will be closed (only) by clicking inside the dropdown menu.
'outside' - the dropdown will be closed (only) by clicking outside the dropdown menu.
|
popperConfig |
null | object | function |
null |
To change Bootstrap's default Popper config, see Popper's configuration.
When a function is used to create the Popper configuration, it's called with an object that contains the Bootstrap's default Popper configuration. It helps you use and merge the default with your own configuration. The function must return a configuration object for Popper.
|