Combobox

lightning-combobox

A widget that provides an input field that is readonly, accompanied by a dropdown list of selectable options.

For Use In

Lightning Experience, Experience Builder Sites, Salesforce Mobile App, Lightning Out (Beta), Standalone Lightning App, Mobile Offline

lightning-combobox is an input element that enables single selection from a list of options. The result of the selection corresponds to the value of the input. Multiple selection is not supported. To support multiple selection, use lightning-dual-listbox instead.

This example creates a list of options with a default selection that's specified with the value attribute. The options attribute specifies the name of an array of items for the dropdown list.

lightning-combobox implements the combobox blueprint in the Salesforce Lightning Design System (SLDS). The combobox adapts to SLDS 1 or SLDS 2 styling based on the org's theme or the container app that you use.

SLDS 1SLDS 2
DesignComboboxCombobox
For Use InLightning Experience, Experience Builder sites, Salesforce mobile app, Lightning Out (Beta), Standalone Lightning app, Mobile OfflineLightning Experience

In your JavaScript, define an array of options. Each option corresponds to a list item on the dropdown list. Define the content of each option by specifying a value property and a label property. The dropdown list shows the label that you provide by using the label value. Select an item updates its corresponding value property.

Define an optional description property to add a line of descriptive text for each option. The descriptive text appears below the label of the list item. When adding descriptions, specify a description for each item in a list. If some items are missing descriptions, the alignment of the items can appear incorrect.

Selecting an option triggers the change event, which calls the handleChange function. To check which option is clicked, use event.detail.value.

By default, the combobox options don't include an icon. To include an SLDS icon on the options, use the button variant. This variant supports options with and without icons. Consider these icon behaviors:

  • The icon is placed before the option label
  • The icon size is xx-small (14 px)
  • Each option can have a unique SLDS icon

Visit icons to view the available icons.

To create a combobox with a unique SLDS icon on each option, use the button variant with the iconName property on the options.

When you select an option from the list, the icon and label are shown on the button.

To create a combobox that appears pill-like without an icon, use the button variant without specifying iconName on the options.

Client-side input validation is available for this component. You can require the selection by adding the required attribute. An error message is automatically shown when an item isn’t selected on a required element.

To check the validity states of an input, use the validity attribute, which is based on the ValidityState object. You can access the validity states in your JavaScript. This validity attribute returns an object with boolean attributes. See lightning-input for more information.

You can override the default message by providing your own value for message-when-value-missing.

Use a combination of variants and utility classes to customize your combobox styles.

Use the variant attribute with one of these values to apply styling.

  • label-hidden hides the label but make it available to assistive technology
  • label-inline horizontally aligns the label and combobox
  • label-stacked to place the label above the combobox
  • button presents a pill-shaped combobox with icon support. See Append an SLDS Icon.

To apply additional styling, use the SLDS utility classes with the class attribute,

Special characters like " must be escaped. For example, you want to display "New".

When you use single quotes in the value, escape the quote with a double slash instead of a single slash.

lightning-combobox doesn't currently support autocomplete or typeahead. The autocomplete attribute is reserved for internal use.

In Lightning Experience, a lightning-combobox dropdown list that's opened overlays the record edit page or modal, the global header, and record form footer when scrolling.

On mobile devices, lightning-combobox has these limitations.

  • The dropdown menu doesn't scroll correctly when there's limited space to show the complete list of options.
  • The mobile viewport doesn't display the dropdown menu correctly, especially if you place the component near the bottom of the page.

We recommend that you use the HTML <select> element on mobile instead.

To enable record lookup in a combobox, use the lightning-record-picker component instead.

Provide a text label for accessibility to make the information available to assistive technology. The label attribute creates an HTML label element for your component. To hide a label from view and make it available to assistive technology, use the label-hidden variant.

This component uses button elements for select-only comboboxes to comply with the Lightning Design System combobox blueprint.

When an option label is too long to fit in a single line, the label wraps and continues in a new line. If a long word in an option label isn't fully visible, scroll horizontally on the dropdown list to reveal the whole word.

change

The event fired when an item is selected in the combobox.

The change event returns this parameter.

ParameterTypeDescription
selectedValuestringThe value of the selected option.

The event properties are as follows.

PropertyValueDescription
bubblestrueThis event bubbles up through the DOM.
cancelablefalseThis event has no default behavior that can be canceled. You can't call preventDefault() on this event.
composedtrueThis event propagates outside of the component in which it was dispatched.

open

The event fired when the dropdown is opened.

The open event doesn’t return any parameters.

PropertyValueDescription
bubblesfalseThis event does not bubble.
cancelablefalseThis event has no default behavior that can be canceled. You can’t call preventDefault() on this event.
composedfalseThis event does not propagate outside of the component in which it was dispatched.