Skip to content

Latest commit

 

History

History

Listbox

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Listbox

Class for setting up an interactive single-select Listbox for presenting a list of options and allowing a user to select one of them.

Contents

Example

<button aria-controls="options">Choose</button>
<ul id="options">
  <li>Anchorage</li>
  <li>Baltimore</li>
  <li>Chicago</li>
  <li>Dallas</li>
  <li>El Paso</li>
  <li>Fort Lauderdale</li>
  <li>Grand Rapids</li>
  <li>Hartford</li>
  <li>Idaho Falls</li>
</ul>
import Listbox from 'aria-components/listbox';

const controller = document.querySelector('button[aria-controls]');
const listbox = new Listbox(controller);

Constructor

Listbox(element: HTMLElement, options: object);

element (Required) Either the element used to activate the Listbox target, or the Listbox target element.

The activating element is required to have an aria-controls attribute with a value matching the id attribute value of the target element; vice-versa for the target element. The component's events will dispatch from this element.

options - (Optional) Configuration options.

Available Options

orientation Whether the options are vertically or horizonally oriented. When valid, the value is used directly in the aria-orientation attribute. This property is also available as a setter. Options are 'vertical' and 'horizontal'. Default is 'vertical'

Instance Methods

Global methods and properties documented at src/README.

show() - Shortcut for listbox.expanded = true.

hide() - Shortcut for listbox.expanded = false.

toggle() - Shortcut for reversing expanded state.

toString() Returns'[object Listbox]'.

Properties

expanded - (setter) Set the component state and update element attributes to show-to or hide-from assistive technology.

expanded - (getter) Get the component state.

activeDescendant (setter) Set the selected Listbox option and update element attributes to mark the option as selected.

activeDescendant (getter) Get the selected Listbox option.

controller The Listbox's activating element.

target The Listbox's target element.

Events

Events are namespaced by their component to avoid clashes with nested components.

'listbox.init'

Fired after the component is initialized.

event.detail.instance The class instance from which the event originated.

'listbox.stateChange'

Fired after component state is updated.

event.detail.instance The class instance from which the event originated.

event.detail.expanded The current expanded component state.

'listbox.destroy'

Fired after the component is destroyed.

event.detail.instance The class instance from which the event originated.

event.detail.element The element passed to the constructor.

Additional Information

The WAI-ARIA Roles, States, and Properties section of the Listbox pattern states:

If the element with role listbox is not part of another widget, such as a combobox, then it has either a visible label referenced by aria-labelledby or a value specified for aria-label.

References