Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-
, as in
data-style=""
or data-selected-text-format="count"
.
Name | Type | Default | Description |
---|---|---|---|
actionsBox | boolean | false |
When set to |
container | string | false | false |
When set to a string, appends the select to a specific element or selector, e.g.,
|
countSelectedText | string | function | function |
Sets the format for the text displayed when selectedTextFormat is When set to a function, the first parameter is the number of selected options, and the second is the total number of options. The function must return a string. |
deselectAllText | string | 'Deselect All' |
The text on the button that deselects all options when |
dropdownAlignRight | boolean | 'auto' | false |
Align the menu to the right instead of the left. If set to |
dropupAuto | boolean | true |
checks to see which has more room, above or below. If the dropup has enough room to fully open normally, but there is more room above, the dropup still opens normally. Otherwise, it becomes a dropup. If dropupAuto is set to false, dropups must be called manually. |
header | string | false |
adds a header to the top of the menu; includes a close button by default |
hideDisabled | boolean | false |
removes disabled options and optgroups from the menu |
iconBase | string | 'glyphicon' |
Set the base to use a different icon font instead of Glyphicons. If changing iconBase, you might also want to change |
liveSearch | boolean | false |
When set to |
liveSearchNormalize | boolean | false |
Setting liveSearchNormalize to |
liveSearchPlaceholder | string | null |
When set to a string, a placeholder attribute equal to the string will be added to the liveSearch input. |
liveSearchStyle | string | 'contains' |
When set to |
maxOptions | integer | false | false |
When set to an integer and in a multi-select, the number of selected options cannot exceed the given value. This option can also exist as a data-attribute for an |
maxOptionsText | string | array | function | function |
The text that is displayed when maxOptions is enabled and the maximum number of options for the given scenario have been selected. If a function is used, it must return an array. array[0] is the text used when maxOptions is applied to the entire select element. array[1] is the text used when maxOptions is used on an optgroup. If a string is used, the same text is used for both the element and the optgroup. |
mobile | boolean | false |
When set to |
multipleSeparator | string | ', ' |
Set the character displayed in the button that separates selected options. |
noneSelectedText | string | 'Nothing selected' |
The text that is displayed when a multiple select has no selected options. |
selectAllText | string | 'Select All' |
The text on the button that selects all options when |
selectedTextFormat | 'values' | 'static' | 'count' | 'count > x' (where x is an integer) |
'values' |
Specifies how the selection is displayed with a multiple select.
|
selectOnTab | boolean | false |
When set to |
showContent | boolean | true |
When set to |
showIcon | boolean | true |
When set to |
showSubtext | boolean | false |
When set to |
showTick | boolean | false |
Show checkmark on selected option (for items without |
size | 'auto' | integer | false |
'auto' |
When set to When set to an integer, the menu will show the given number of items, even if the dropdown is cut off. When set to |
style | string | null | null |
When set to a string, add the value to the button's style. |
tickIcon | string | 'glyphicon-ok' |
Set which icon to use to display as the "tick" next to selected options. |
title | string | null | null |
The default title for the selectpicker. |
width | 'auto' | 'fit' | css-width | false (where css-width is a CSS width with units, e.g. 100px ) |
false |
When set to When set to a css-width, the width of the selectpicker is forced inline to the given value. When set to |
Event Type | Description |
---|---|
show.bs.select | This event fires immediately when the show instance method is called. |
shown.bs.select | This event is fired when the dropdown has been made visible to the user (will wait for CSS transitions, to complete). |
hide.bs.select | This event is fired immediately when the hide instance method has been called. |
hidden.bs.select | This event is fired when the dropdown has finished being hidden from the user (will wait for CSS transitions, to complete). |
loaded.bs.select | This event fires after the select has been initialized. |
rendered.bs.select | This event fires after the render instance has been called. |
refreshed.bs.select | This event fires after the refresh instance has been called. |
changed.bs.select | This event fires after the select's value has been changed. It passes through event, clickedIndex, newValue, oldValue. |
$('#mySelect').on('hidden.bs.select', function (e) {
// do something...
});