UNPKG

bootstrap-vue

Version:

With more than 85 components, over 45 available plugins, several directives, and 1000+ icons, BootstrapVue provides one of the most comprehensive implementations of the Bootstrap v4 component and grid system available for Vue.js v2.6, complete with extens

110 lines (86 loc) 4.01 kB
# Button Toolbar > Group a series of button-groups and/or input-groups together on a single line, with optional > keyboard navigation **Example 1:** with button groups & Keyboard navigation ```html <div> <b-button-toolbar key-nav aria-label="Toolbar with button groups"> <b-button-group class="mx-1"> <b-button>&laquo;</b-button> <b-button>&lsaquo;</b-button> </b-button-group> <b-button-group class="mx-1"> <b-button>Edit</b-button> <b-button>Undo</b-button> <b-button>Redo</b-button> </b-button-group> <b-button-group class="mx-1"> <b-button>&rsaquo;</b-button> <b-button>&raquo;</b-button> </b-button-group> </b-button-toolbar> </div> <!-- b-button-toolbar.vue --> ``` **Example 2:** with mixture of small button group and small input group ```html <div> <b-button-toolbar aria-label="Toolbar with button groups and input groups"> <b-button-group size="sm" class="mr-1"> <b-button>Save</b-button> <b-button>Cancel</b-button> </b-button-group> <b-input-group size="sm" prepend="$" append=".00"> <b-form-input value="100" class="text-right"></b-form-input> </b-input-group> </b-button-toolbar> </div> <!-- b-button-toolbar-input.vue --> ``` **Example 3:** with button groups and dropdown menu ```html <div> <b-button-toolbar aria-label="Toolbar with button groups and dropdown menu"> <b-button-group class="mx-1"> <b-button>New</b-button> <b-button>Edit</b-button> <b-button>Undo</b-button> </b-button-group> <b-dropdown class="mx-1" right text="menu"> <b-dropdown-item>Item 1</b-dropdown-item> <b-dropdown-item>Item 2</b-dropdown-item> <b-dropdown-item>Item 3</b-dropdown-item> </b-dropdown> <b-button-group class="mx-1"> <b-button>Save</b-button> <b-button>Cancel</b-button> </b-button-group> </b-button-toolbar> </div> <!-- b-button-toolbar-dropdown.vue --> ``` ## Usage Feel free to mix input groups and dropdowns with button groups in your toolbars. Similar to the example above, you'll likely need some utility classes though to space things properly. ## Sizing Note, if you want smaller or larger buttons or controls, set the `size` prop directly on the `<b-button-group>`, `<b-input-group>`, and `<b-dropdown>` components. ## Justify Make the toolbar span the maximum available width, by increasing spacing between the button groups, input groups and dropdowns, by setting the prop `justify`. ## Keyboard navigation Enable optional keyboard navigation by setting the prop `key-nav`. | Keypress | Action | | --------------------------------------------------------------------- | ----------------------------------------------------- | | <kbd>Left</kbd> or <kbd>Up</kbd> | Move to the previous non-disabled item in the toolbar | | <kbd>Right</kbd> or <kbd>Down</kbd> | Move to the next non-disabled item in the toolbar | | <kbd>Shift</kbd>+<kbd>Left</kbd> or <kbd>Shift</kbd>+<kbd>Up</kbd> | Move to the first non-disabled item in the toolbar | | <kbd>Shift</kbd>+<kbd>Right</kbd> or <kbd>Shift</kbd>+<kbd>Down</kbd> | Move to the last non-disabled item in the toolbar | | <kbd>Tab</kbd> | Move to the next control on the page | | <kbd>Shift</kbd>+<kbd>Tab</kbd> | Move to the previous control on the page | **Caution:** If you have text or text-like inputs in your toolbar, leave keyboard navigation off, as it is not possible to use key presses to jump out of a text (or test-like) inputs. ## See also - [`<b-button-group>`](/docs/components/button-group) - [`<b-dropdown>`](/docs/components/dropdown) <!-- Component reference added automatically from component package.json -->