2014-07-13 09:59:31 +02:00
---
2015-08-15 07:45:55 +02:00
layout: docs
2014-07-13 09:59:31 +02:00
title: List group
2017-05-28 08:01:14 +02:00
description: List groups are a flexible and powerful component for displaying a series of content. Modify and extend them to support just about any content within.
2015-08-06 02:47:45 +02:00
group: components
2017-05-28 08:01:14 +02:00
toc: true
2014-07-13 09:59:31 +02:00
---
2015-05-29 10:58:52 +02:00
## Basic example
2017-05-28 08:01:14 +02:00
2016-12-28 22:45:07 +01:00
The most basic list group is an unordered list with list items and the proper classes. Build upon it with the options that follow, or with your own CSS as needed.
2014-07-13 10:12:06 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2014-03-17 03:03:53 +01:00
< ul class = "list-group" >
< li class = "list-group-item" > Cras justo odio< / li >
< li class = "list-group-item" > Dapibus ac facilisis in< / li >
< li class = "list-group-item" > Morbi leo risus< / li >
< li class = "list-group-item" > Porta ac consectetur ac< / li >
< li class = "list-group-item" > Vestibulum at eros< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2014-07-13 10:12:06 +02:00
2016-12-28 22:45:07 +01:00
## Active items
2014-07-13 10:12:06 +02:00
2016-12-28 22:45:07 +01:00
Add `.active` to a `.list-group-item` to indicate the current active selection.
2016-10-30 22:13:06 +01:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-10-30 22:13:06 +01:00
< ul class = "list-group" >
2016-12-28 22:45:07 +01:00
< li class = "list-group-item active" > Cras justo odio< / li >
< li class = "list-group-item" > Dapibus ac facilisis in< / li >
< li class = "list-group-item" > Morbi leo risus< / li >
< li class = "list-group-item" > Porta ac consectetur ac< / li >
< li class = "list-group-item" > Vestibulum at eros< / li >
2016-10-30 22:13:06 +01:00
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2016-10-30 22:13:06 +01:00
2016-02-07 04:50:00 +01:00
## Disabled items
2014-07-13 10:12:06 +02:00
2016-12-28 22:45:07 +01:00
Add `.disabled` to a `.list-group-item` to make it _appear_ disabled. Note that some elements with `.disabled` will also require custom JavaScript to fully disable their click events (e.g., links).
2014-07-13 10:12:06 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-12-28 22:45:07 +01:00
< ul class = "list-group" >
2018-11-06 09:47:59 +01:00
< li class = "list-group-item disabled" aria-disabled = "true" > Cras justo odio< / li >
2016-12-28 22:45:07 +01:00
< li class = "list-group-item" > Dapibus ac facilisis in< / li >
< li class = "list-group-item" > Morbi leo risus< / li >
< li class = "list-group-item" > Porta ac consectetur ac< / li >
< li class = "list-group-item" > Vestibulum at eros< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2014-07-13 10:12:06 +02:00
2016-12-28 22:45:07 +01:00
## Links and buttons
2016-02-07 04:50:00 +01:00
2016-12-28 22:45:07 +01:00
Use `<a>` s or `<button>` s to create _actionable_ list group items with hover, disabled, and active states by adding `.list-group-item-action` . We separate these pseudo-classes to ensure list groups made of non-interactive elements (like `<li>` s or `<div>` s) don't provide a click or tap affordance.
2015-06-19 08:56:43 +02:00
2016-02-07 04:50:00 +01:00
Be sure to **not use the standard `.btn` classes here** .
2015-06-19 08:56:43 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2015-06-19 08:56:43 +02:00
< div class = "list-group" >
2017-08-26 14:05:53 +02:00
< a href = "#" class = "list-group-item list-group-item-action active" >
2016-02-07 04:50:00 +01:00
Cras justo odio
< / a >
< a href = "#" class = "list-group-item list-group-item-action" > Dapibus ac facilisis in< / a >
< a href = "#" class = "list-group-item list-group-item-action" > Morbi leo risus< / a >
< a href = "#" class = "list-group-item list-group-item-action" > Porta ac consectetur ac< / a >
2018-11-06 09:47:59 +01:00
< a href = "#" class = "list-group-item list-group-item-action disabled" tabindex = "-1" aria-disabled = "true" > Vestibulum at eros< / a >
2015-06-19 08:56:43 +02:00
< / div >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2015-06-19 08:56:43 +02:00
2016-12-28 22:45:07 +01:00
With `<button>` s, you can also make use of the `disabled` attribute instead of the `.disabled` class. Sadly, `<a>` s don't support the disabled attribute.
2019-01-08 17:33:28 +01:00
{{< example > }}
2014-03-17 03:03:53 +01:00
< div class = "list-group" >
2016-02-07 04:50:00 +01:00
< button type = "button" class = "list-group-item list-group-item-action active" >
2014-03-17 03:03:53 +01:00
Cras justo odio
2016-02-07 04:50:00 +01:00
< / button >
< button type = "button" class = "list-group-item list-group-item-action" > Dapibus ac facilisis in< / button >
< button type = "button" class = "list-group-item list-group-item-action" > Morbi leo risus< / button >
< button type = "button" class = "list-group-item list-group-item-action" > Porta ac consectetur ac< / button >
2016-12-28 22:45:07 +01:00
< button type = "button" class = "list-group-item list-group-item-action" disabled > Vestibulum at eros< / button >
2014-03-17 03:03:53 +01:00
< / div >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2014-07-13 10:12:06 +02:00
2018-01-15 00:46:58 +01:00
## Flush
Add `.list-group-flush` to remove some borders and rounded corners to render list group items edge-to-edge in a parent container (e.g., cards).
2019-01-08 17:33:28 +01:00
{{< example > }}
2018-01-15 00:46:58 +01:00
< ul class = "list-group list-group-flush" >
< li class = "list-group-item" > Cras justo odio< / li >
< li class = "list-group-item" > Dapibus ac facilisis in< / li >
< li class = "list-group-item" > Morbi leo risus< / li >
< li class = "list-group-item" > Porta ac consectetur ac< / li >
< li class = "list-group-item" > Vestibulum at eros< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2018-01-15 00:46:58 +01:00
2019-01-07 02:01:36 +01:00
## Horizontal
Add `.list-group-horizontal` to change the layout of list group items from vertical to horizontal across all breakpoints. Alternatively, choose a responsive variant `.list-group-horizontal-{sm|md|lg|xl}` to make a list group horizontal starting at that breakpoint's `min-width` . Currently **horizontal list groups cannot be combined with flush list groups.**
**ProTip:** Want equal-width list group items when horizontal? Add `.flex-fill` to each list group item.
2019-01-08 17:33:28 +01:00
{{< example > }}
{{< list-group.inline > }}
{{- range $.Site.Data.breakpoints }}
< ul class = "list-group list-group-horizontal{{ .abbr }}" >
2019-01-07 02:01:36 +01:00
< li class = "list-group-item" > Cras justo odio< / li >
< li class = "list-group-item" > Dapibus ac facilisis in< / li >
< li class = "list-group-item" > Morbi leo risus< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{- end -}}
{{< / list-group.inline > }}
{{< / example > }}
2019-01-07 02:01:36 +01:00
2015-05-29 10:58:52 +02:00
## Contextual classes
2014-07-13 10:12:06 +02:00
2016-12-28 22:52:49 +01:00
Use contextual classes to style list items with a stateful background and color.
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-12-28 22:52:49 +01:00
< ul class = "list-group" >
< li class = "list-group-item" > Dapibus ac facilisis in< / li >
2019-01-08 17:33:28 +01:00
{{< list.inline > }}
{{- range (index $.Site.Data "theme-colors") }}
< li class = "list-group-item list-group-item-{{ .name }}" > A simple {{ .name }} list group item< / li >
{{- end -}}
{{< / list.inline > }}
2016-12-28 22:52:49 +01:00
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2016-12-28 22:52:49 +01:00
Contextual classes also work with `.list-group-item-action` . Note the addition of the hover styles here not present in the previous example. Also supported is the `.active` state; apply it to indicate an active selection on a contextual list group item.
2014-07-13 10:12:06 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2014-03-17 03:03:53 +01:00
< div class = "list-group" >
2016-12-28 22:52:49 +01:00
< a href = "#" class = "list-group-item list-group-item-action" > Dapibus ac facilisis in< / a >
2019-01-08 17:33:28 +01:00
{{< list.inline > }}
{{- range (index $.Site.Data "theme-colors") }}
< a href = "#" class = "list-group-item list-group-item-action list-group-item-{{ .name }}" > A simple {{ .name }} list group item< / a >
{{- end -}}
{{< / list.inline > }}
2014-03-17 03:03:53 +01:00
< / div >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2014-07-13 10:12:06 +02:00
2019-01-08 17:33:28 +01:00
{{< callout info > }}
{{< partial " callout-warning-color-assistive-technologies . md " > }}
{{< / callout > }}
2016-02-17 11:22:48 +01:00
2016-12-28 22:45:07 +01:00
## With badges
2019-02-04 11:22:02 +01:00
Add badges to any list group item to show unread counts, activity, and more with the help of some [utilities ]({{< docsref "/utilities/flex" >}} ).
2016-12-28 22:45:07 +01:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2016-12-28 22:45:07 +01:00
< ul class = "list-group" >
2017-03-19 00:30:12 +01:00
< li class = "list-group-item d-flex justify-content-between align-items-center" >
2016-12-28 22:45:07 +01:00
Cras justo odio
2019-08-04 07:23:25 +02:00
< span class = "badge bg-primary rounded-pill" > 14< / span >
2016-12-28 22:45:07 +01:00
< / li >
2017-03-19 00:30:12 +01:00
< li class = "list-group-item d-flex justify-content-between align-items-center" >
2016-12-28 22:45:07 +01:00
Dapibus ac facilisis in
2019-08-04 07:23:25 +02:00
< span class = "badge bg-primary rounded-pill" > 2< / span >
2016-12-28 22:45:07 +01:00
< / li >
2017-03-19 00:30:12 +01:00
< li class = "list-group-item d-flex justify-content-between align-items-center" >
2016-12-28 22:45:07 +01:00
Morbi leo risus
2019-08-04 07:23:25 +02:00
< span class = "badge bg-primary rounded-pill" > 1< / span >
2016-12-28 22:45:07 +01:00
< / li >
< / ul >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2016-12-28 22:45:07 +01:00
2015-05-29 10:58:52 +02:00
## Custom content
2014-07-13 10:12:06 +02:00
2019-02-04 11:22:02 +01:00
Add nearly any HTML within, even for linked list groups like the one below, with the help of [flexbox utilities ]({{< docsref "/utilities/flex" >}} ).
2014-07-13 10:12:06 +02:00
2019-01-08 17:33:28 +01:00
{{< example > }}
2014-03-17 03:03:53 +01:00
< div class = "list-group" >
2018-09-19 07:14:45 +02:00
< a href = "#" class = "list-group-item list-group-item-action active" >
2017-01-04 05:08:10 +01:00
< div class = "d-flex w-100 justify-content-between" >
< h5 class = "mb-1" > List group item heading< / h5 >
< small > 3 days ago< / small >
< / div >
< p class = "mb-1" > Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.< / p >
< small > Donec id elit non mi porta.< / small >
2014-07-13 10:12:06 +02:00
< / a >
2018-09-19 07:14:45 +02:00
< a href = "#" class = "list-group-item list-group-item-action" >
2017-01-04 05:08:10 +01:00
< div class = "d-flex w-100 justify-content-between" >
< h5 class = "mb-1" > List group item heading< / h5 >
< small class = "text-muted" > 3 days ago< / small >
< / div >
< p class = "mb-1" > Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.< / p >
< small class = "text-muted" > Donec id elit non mi porta.< / small >
2014-07-13 10:12:06 +02:00
< / a >
2018-09-19 07:14:45 +02:00
< a href = "#" class = "list-group-item list-group-item-action" >
2017-01-04 05:08:10 +01:00
< div class = "d-flex w-100 justify-content-between" >
< h5 class = "mb-1" > List group item heading< / h5 >
< small class = "text-muted" > 3 days ago< / small >
< / div >
< p class = "mb-1" > Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.< / p >
< small class = "text-muted" > Donec id elit non mi porta.< / small >
2014-03-17 03:03:53 +01:00
< / a >
< / div >
2019-01-08 17:33:28 +01:00
{{< / example > }}
2017-04-02 11:21:04 +02:00
## JavaScript behavior
Use the tab JavaScript plugin—include it individually or through the compiled `bootstrap.js` file—to extend our list group to create tabbable panes of local content.
< div class = "bd-example" role = "tabpanel" >
< div class = "row" >
< div class = "col-4" >
< div class = "list-group" id = "list-tab" role = "tablist" >
2017-07-31 12:56:43 +02:00
< a class = "list-group-item list-group-item-action active" id = "list-home-list" data-toggle = "tab" href = "#list-home" role = "tab" aria-controls = "list-home" > Home< / a >
< a class = "list-group-item list-group-item-action" id = "list-profile-list" data-toggle = "tab" href = "#list-profile" role = "tab" aria-controls = "list-profile" > Profile< / a >
< a class = "list-group-item list-group-item-action" id = "list-messages-list" data-toggle = "tab" href = "#list-messages" role = "tab" aria-controls = "list-messages" > Messages< / a >
< a class = "list-group-item list-group-item-action" id = "list-settings-list" data-toggle = "tab" href = "#list-settings" role = "tab" aria-controls = "list-settings" > Settings< / a >
2017-04-02 11:21:04 +02:00
< / div >
< / div >
< div class = "col-8" >
< div class = "tab-content" id = "nav-tabContent" >
< div class = "tab-pane fade show active" id = "list-home" role = "tabpanel" aria-labelledby = "list-home-list" >
< p > Velit aute mollit ipsum ad dolor consectetur nulla officia culpa adipisicing exercitation fugiat tempor. Voluptate deserunt sit sunt nisi aliqua fugiat proident ea ut. Mollit voluptate reprehenderit occaecat nisi ad non minim tempor sunt voluptate consectetur exercitation id ut nulla. Ea et fugiat aliquip nostrud sunt incididunt consectetur culpa aliquip eiusmod dolor. Anim ad Lorem aliqua in cupidatat nisi enim eu nostrud do aliquip veniam minim.< / p >
< / div >
< div class = "tab-pane fade" id = "list-profile" role = "tabpanel" aria-labelledby = "list-profile-list" >
< p > Cupidatat quis ad sint excepteur laborum in esse qui. Et excepteur consectetur ex nisi eu do cillum ad laborum. Mollit et eu officia dolore sunt Lorem culpa qui commodo velit ex amet id ex. Officia anim incididunt laboris deserunt anim aute dolor incididunt veniam aute dolore do exercitation. Dolor nisi culpa ex ad irure in elit eu dolore. Ad laboris ipsum reprehenderit irure non commodo enim culpa commodo veniam incididunt veniam ad.< / p >
< / div >
< div class = "tab-pane fade" id = "list-messages" role = "tabpanel" aria-labelledby = "list-messages-list" >
< p > Ut ut do pariatur aliquip aliqua aliquip exercitation do nostrud commodo reprehenderit aute ipsum voluptate. Irure Lorem et laboris nostrud amet cupidatat cupidatat anim do ut velit mollit consequat enim tempor. Consectetur est minim nostrud nostrud consectetur irure labore voluptate irure. Ipsum id Lorem sit sint voluptate est pariatur eu ad cupidatat et deserunt culpa sit eiusmod deserunt. Consectetur et fugiat anim do eiusmod aliquip nulla laborum elit adipisicing pariatur cillum.< / p >
< / div >
< div class = "tab-pane fade" id = "list-settings" role = "tabpanel" aria-labelledby = "list-settings-list" >
< p > Irure enim occaecat labore sit qui aliquip reprehenderit amet velit. Deserunt ullamco ex elit nostrud ut dolore nisi officia magna sit occaecat laboris sunt dolor. Nisi eu minim cillum occaecat aute est cupidatat aliqua labore aute occaecat ea aliquip sunt amet. Aute mollit dolor ut exercitation irure commodo non amet consectetur quis amet culpa. Quis ullamco nisi amet qui aute irure eu. Magna labore dolor quis ex labore id nostrud deserunt dolor eiusmod eu pariatur culpa mollit in irure.< / p >
< / div >
< / div >
< / div >
< / div >
< / div >
2019-01-08 17:33:28 +01:00
{{< highlight html > }}
2017-04-02 11:21:04 +02:00
< div class = "row" >
< div class = "col-4" >
< div class = "list-group" id = "list-tab" role = "tablist" >
< a class = "list-group-item list-group-item-action active" id = "list-home-list" data-toggle = "list" href = "#list-home" role = "tab" aria-controls = "home" > Home< / a >
< a class = "list-group-item list-group-item-action" id = "list-profile-list" data-toggle = "list" href = "#list-profile" role = "tab" aria-controls = "profile" > Profile< / a >
< a class = "list-group-item list-group-item-action" id = "list-messages-list" data-toggle = "list" href = "#list-messages" role = "tab" aria-controls = "messages" > Messages< / a >
< a class = "list-group-item list-group-item-action" id = "list-settings-list" data-toggle = "list" href = "#list-settings" role = "tab" aria-controls = "settings" > Settings< / a >
< / div >
< / div >
< div class = "col-8" >
< div class = "tab-content" id = "nav-tabContent" >
< div class = "tab-pane fade show active" id = "list-home" role = "tabpanel" aria-labelledby = "list-home-list" > ...< / div >
< div class = "tab-pane fade" id = "list-profile" role = "tabpanel" aria-labelledby = "list-profile-list" > ...< / div >
< div class = "tab-pane fade" id = "list-messages" role = "tabpanel" aria-labelledby = "list-messages-list" > ...< / div >
< div class = "tab-pane fade" id = "list-settings" role = "tabpanel" aria-labelledby = "list-settings-list" > ...< / div >
< / div >
< / div >
< / div >
2019-01-08 17:33:28 +01:00
{{< / highlight > }}
2017-04-02 11:21:04 +02:00
### Using data attributes
2017-10-04 11:46:36 +02:00
You can activate a list group navigation without writing any JavaScript by simply specifying `data-toggle="list"` or on an element. Use these data attributes on `.list-group-item` .
2017-04-02 11:21:04 +02:00
< div role = "tabpanel" >
2019-01-08 17:33:28 +01:00
{{< highlight html > }}
2017-04-02 11:21:04 +02:00
<!-- List group -->
< div class = "list-group" id = "myList" role = "tablist" >
< a class = "list-group-item list-group-item-action active" data-toggle = "list" href = "#home" role = "tab" > Home< / a >
< a class = "list-group-item list-group-item-action" data-toggle = "list" href = "#profile" role = "tab" > Profile< / a >
< a class = "list-group-item list-group-item-action" data-toggle = "list" href = "#messages" role = "tab" > Messages< / a >
< a class = "list-group-item list-group-item-action" data-toggle = "list" href = "#settings" role = "tab" > Settings< / a >
< / div >
<!-- Tab panes -->
< div class = "tab-content" >
< div class = "tab-pane active" id = "home" role = "tabpanel" > ...< / div >
< div class = "tab-pane" id = "profile" role = "tabpanel" > ...< / div >
< div class = "tab-pane" id = "messages" role = "tabpanel" > ...< / div >
< div class = "tab-pane" id = "settings" role = "tabpanel" > ...< / div >
< / div >
2019-01-08 17:33:28 +01:00
{{< / highlight > }}
2017-04-02 11:21:04 +02:00
< / div >
### Via JavaScript
Enable tabbable list item via JavaScript (each list item needs to be activated individually):
2019-01-08 17:33:28 +01:00
{{< highlight js > }}
2019-08-04 11:55:37 +02:00
var triggerTabList = [].slice.call(document.querySelectorAll('#myTab a'))
triggerTabList.forEach(function (triggerEl) {
var tabTrigger = new bootstrap.Tab(triggerEl)
triggerEl.addEventListener('click', function (e) {
e.preventDefault()
tabTrigger.show()
})
2017-04-02 11:21:04 +02:00
})
2019-01-08 17:33:28 +01:00
{{< / highlight > }}
2017-04-02 11:21:04 +02:00
You can activate individual list item in several ways:
2019-01-08 17:33:28 +01:00
{{< highlight js > }}
2019-08-04 11:55:37 +02:00
var triggerEl = document.querySelector('#myTab a[href="#profile"]')
bootstrap.Tab.getInstance(triggerEl).show() // Select tab by name
var triggerFirstTabEl = document.querySelector('#myTab li:first-child a')
bootstrap.Tab.getInstance(triggerFirstTabEl).show() // Select first tab
2019-01-08 17:33:28 +01:00
{{< / highlight > }}
2017-04-02 11:21:04 +02:00
### Fade effect
To make tabs panel fade in, add `.fade` to each `.tab-pane` . The first tab pane must also have `.show` to make the initial content visible.
2019-01-08 17:33:28 +01:00
{{< highlight html > }}
2017-04-02 11:21:04 +02:00
< div class = "tab-content" >
< div class = "tab-pane fade show active" id = "home" role = "tabpanel" > ...< / div >
< div class = "tab-pane fade" id = "profile" role = "tabpanel" > ...< / div >
< div class = "tab-pane fade" id = "messages" role = "tabpanel" > ...< / div >
< div class = "tab-pane fade" id = "settings" role = "tabpanel" > ...< / div >
< / div >
2019-01-08 17:33:28 +01:00
{{< / highlight > }}
2017-04-02 11:21:04 +02:00
### Methods
2019-08-04 11:55:37 +02:00
#### constructor
2017-04-02 11:21:04 +02:00
Activates a list item element and content container. Tab should have either a `data-target` or an `href` targeting a container node in the DOM.
2019-01-08 17:33:28 +01:00
{{< highlight html > }}
2017-04-02 11:21:04 +02:00
< div class = "list-group" id = "myList" role = "tablist" >
< a class = "list-group-item list-group-item-action active" data-toggle = "list" href = "#home" role = "tab" > Home< / a >
< a class = "list-group-item list-group-item-action" data-toggle = "list" href = "#profile" role = "tab" > Profile< / a >
< a class = "list-group-item list-group-item-action" data-toggle = "list" href = "#messages" role = "tab" > Messages< / a >
< a class = "list-group-item list-group-item-action" data-toggle = "list" href = "#settings" role = "tab" > Settings< / a >
< / div >
< div class = "tab-content" >
< div class = "tab-pane active" id = "home" role = "tabpanel" > ...< / div >
< div class = "tab-pane" id = "profile" role = "tabpanel" > ...< / div >
< div class = "tab-pane" id = "messages" role = "tabpanel" > ...< / div >
< div class = "tab-pane" id = "settings" role = "tabpanel" > ...< / div >
< / div >
< script >
2019-08-04 11:55:37 +02:00
var firstTabEl = document.querySelector('#myTab a:last-child')
var firstTab = new bootstrap.Tab(firstTabEl)
firstTab.show()
2017-04-02 11:21:04 +02:00
< / script >
2019-01-08 17:33:28 +01:00
{{< / highlight > }}
2017-04-02 11:21:04 +02:00
2019-08-04 11:55:37 +02:00
#### show
2017-04-02 11:21:04 +02:00
2017-04-08 22:58:20 +02:00
Selects the given list item and shows its associated pane. Any other list item that was previously selected becomes unselected and its associated pane is hidden. **Returns to the caller before the tab pane has actually been shown** (for example, before the `shown.bs.tab` event occurs).
2017-04-02 11:21:04 +02:00
2019-01-08 17:33:28 +01:00
{{< highlight js > }}
2019-08-04 11:55:37 +02:00
var someListItemEl = document.querySelector('#someListItem')
var tab = new bootstrap.Tab(someListItemEl)
tab.show()
{{< / highlight > }}
#### dispose
Destroys an element's tab.
#### getInstance
*Static* method which allows you to get the tab instance associated with a DOM element
{{< highlight js > }}
var triggerEl = document.querySelector('#trigger')
var tab = bootstrap.Tab.getInstance(triggerEl) // Returns a Bootstrap tab instance
2019-01-08 17:33:28 +01:00
{{< / highlight > }}
2017-04-02 11:21:04 +02:00
### Events
When showing a new tab, the events fire in the following order:
1. `hide.bs.tab` (on the current active tab)
2. `show.bs.tab` (on the to-be-shown tab)
3. `hidden.bs.tab` (on the previous active tab, the same one as for the `hide.bs.tab` event)
4. `shown.bs.tab` (on the newly-active just-shown tab, the same one as for the `show.bs.tab` event)
2017-04-08 22:58:20 +02:00
If no tab was already active, the `hide.bs.tab` and `hidden.bs.tab` events will not be fired.
2017-04-02 11:21:04 +02:00
v5: Forms update (#28450)
* Initial spike of consolidated form checks
* Stub out forms rearrangement
- Prepping to drop non-custom file and range inputs
- Prepping to merge custom and native checks and radios (with switches)
- Prepping to merge custom select with form select
- Moving docs arround so forms has it's own area given volume of CSS
* Move input group Sass file to forms subdir
* Start to split and move the docs around
* Simpler imports
* Copyediting
* delete overview file
* Remove commented out code
* remove the custom-forms import
* rewrite flex-check as form-check, replace all custom properties
* Remove old forms doc
* stub out new subpage link section
* update migration guide
* Update nav, forms overview in page nav, and descriptions
* fix check bg position
* fix margin-top calculation
* rename .custom-select to .form-select
* Update validation styles for new checks
* add some vertical margin, fix inline checks
* fix docs examples
* better way to do this contents stuff, redo the toc while i'm at it
* page restyle for docs while here
* un-callout that, edit text
* redo padding on toc
* fix toc
* start to cleanup checks docs
* Rewrite Markdown tables into HTML
* Redesign tables, redo their docs
* Replace Open Iconic icons with custom Bootstrap icons
* Redesign the docs navbar, add a subheader, redo the sidebar
* Redesign docs homepage a bit
* Simplify table style overrides for docs tables
* Simplify docs typography for page titles and reading line length
* Stub out icons page
* Part of sidebar update, remove migration from nav.yml
* Move toc CSS to separate partial
* Change appearance of overview page
* fix sidebar arrow direction
* Add footer to docs layout
* Update descriptions
* Drop the .form-group class for margin utilities
* Remove lingering form-group-margin-bottom var
* improve footer spacing
* add headings to range page
* uncomment form range css
* Rename .custom-range to .form-range
* Drop unused docs var
* Uncomment the comment
* Remove unused variable
* Fix radio image sizing
* Reboot update: reset horizontal ul and ol padding
* de-dupe IDs
* tweak toc styles
* nvm, fix dropdown versions stuff
* remove sidebar nav toggle for now
* broken html
* fix more broken html, move css
* scss linting
* comment out broken helper docs
* scope styles
* scope styles
* Fixes #25540 and fixes #26407 for v5 only
* Update sidebar once more
* Match new sidenav order
* fix syntax error
* Rename custom-file to form-file, update paths, update migration docs for previous changes in #28696
* rename back
* fix size and alignment
* rename that back too
2019-07-12 23:52:33 +02:00
< table class = "table" >
2017-04-02 11:21:04 +02:00
< thead >
2017-04-28 00:57:10 +02:00
< tr >
< th style = "width: 150px;" > Event type< / th >
< th > Description< / th >
< / tr >
2017-04-02 11:21:04 +02:00
< / thead >
< tbody >
< tr >
< td > show.bs.tab< / td >
< td > This event fires on tab show, but before the new tab has been shown. Use < code > event.target< / code > and < code > event.relatedTarget< / code > to target the active tab and the previous active tab (if available) respectively.< / td >
2017-04-28 00:57:10 +02:00
< / tr >
< tr >
2017-04-02 11:21:04 +02:00
< td > shown.bs.tab< / td >
< td > This event fires on tab show after a tab has been shown. Use < code > event.target< / code > and < code > event.relatedTarget< / code > to target the active tab and the previous active tab (if available) respectively.< / td >
< / tr >
< tr >
< td > hide.bs.tab< / td >
< td > This event fires when a new tab is to be shown (and thus the previous active tab is to be hidden). Use < code > event.target< / code > and < code > event.relatedTarget< / code > to target the current active tab and the new soon-to-be-active tab, respectively.< / td >
< / tr >
< tr >
< td > hidden.bs.tab< / td >
< td > This event fires after a new tab is shown (and thus the previous active tab is hidden). Use < code > event.target< / code > and < code > event.relatedTarget< / code > to target the previous active tab and the new active tab, respectively.< / td >
< / tr >
< / tbody >
< / table >
2019-01-08 17:33:28 +01:00
{{< highlight js > }}
2019-08-04 11:55:37 +02:00
var tabEl = document.querySelector('a[data-toggle="list"]')
tabEl.addEventListener('shown.bs.tab', function (e) {
2017-04-02 11:21:04 +02:00
e.target // newly activated tab
e.relatedTarget // previous active tab
})
2019-01-08 17:33:28 +01:00
{{< / highlight > }}