Skip to main content
Version: Current

Web Components - Combobox

A combo-box is an input with an associated pop-up that enables users to select one value from a collection of possible values.

Set-up

import { provideDesignSystem, alphaCombobox, alphaOption } from '@genesislcap/alpha-design-system';

provideDesignSystem().register(alphaCombobox(), alphaOption());

Attributes

You can define the following attributes when you declare an <alpha-combobox>. This component needs to be used in combination with <alpha-option>

NameTypeDescription
autocompletestringDefines how autocompletion works in the component. It can be "inline", "list", "both", "none". Default: none
case-sensitivebooleanSets whether to treat values in a case-sensitive matter. Default: false
disabledbooleanSimilar to readonly, but with a blur on the component
formstringAssociates this component to a form. Form id needs to be passed. If no Id informed, then it will be associated with the ancestor form
ignore-input-clickbooleanSets whether to keep the dropdown closed when the input field is clicked. Default: false
openbooleanDefines whether the combolist starts opened or not. Default: false
positionstringPlaces the combolist above or below the combo-box. It can be above or below. Default: it will try to fit with the page
placeholderstringSets placeholder text for the element (which disappears when the user starts typing)
valuestringSets an initial value for this component
note

autocompletehas the following settings:

  • inline: as the user types in the combo-box, the component displays valid options for completing the entry within the combo-box.
  • list: as the user types in the combo-box, the component displays and filters the combolist above or below the combo-box.
  • both: the component behaves as both inline and list
  • none: the component does not provide autocomplete

Option attributes

In order to use the combo-box, you need to create a list of options for the user to select from. You create this list using <alpha-option>.

When you declare an <alpha-option>, you can define the following attributes:

NameTypeDescription
disabledbooleanDisables an option so that the user cannot interact with it, but the option is still visible
selectedbooleanDefines a default selection for the combo-box
note

If you place the selected attribute in more than one alpha-option, only the first occurrence will be activated.

Usage

All examples below use the alpha-design-system. If you are using any other design system, change the declaration of this component accordingly.

  • Example 1: a combo-box that autocompletes both inline (within the combo-box) and list (in the combolist); there are three options in the list, including one disabled
Example 1
<alpha-combobox autocomplete="both">
<alpha-option disabled>Christopher Eccleston</alpha-option>
<alpha-option>David Tennant</alpha-option>
<alpha-option>Matt Smith</alpha-option>
</alpha-combobox>
  • Example 2: a combo-box with combolist placed above; there are four items in the list and the first and the last have been marked as selected - the first one listed will be selected when the component is run - in this case, Tom Baker; there is no autocompletion
Example 2
<alpha-combobox position="above">
<alpha-option selected>Tom Baker</alpha-option>
<alpha-option>Christopher Eccleston</alpha-option>
<alpha-option>Matt Smith</alpha-option>
<alpha-option selected>David Tennant</alpha-option>
</alpha-combobox>
  • Example 3: a disabled combo-box with no selected value: this will be greyed out and the user will not be able to select from it
Example 3
<alpha-combobox disabled>
<alpha-option>Christopher Eccleston</alpha-option>
<alpha-option>David Tennant</alpha-option>
<alpha-option>Matt Smith</alpha-option>
</alpha-combobox>
warning

The native behaviour of a combobox component is to accept whatever entry the user inserts, even if it is not one of the options available.

In order to avoid this, implement some protection manually.

Get the user input

Once the user has input a value to this component, you need to make it accessible to the application:

  1. Create an @observable variable where you want to use this value:
import {... , observable} from '@microsoft/fast-element';
...
export class TEMPLATE extends FASTElement {
...
@observable combobox: string
...
}
  1. Use the sync function to insert the value from the component into the variable combobox:
import {sync} from '@genesislcap/foundation-utils';
...
...
<alpha-combobox value="${sync((x) => x.combobox)}">
<alpha-option>Christopher Eccleston</alpha-option>
<alpha-option>David Tennant</alpha-option>
<alpha-option>Matt Smith</alpha-option>
</alpha-combobox>
...
...

From this point, you can access the value of the component in your application. Note that the value you get from the combo-box is the string defined in the alpha-option

Creating a list dynamically

When you're developing your application, you normally want to generate the combolist instead of specifying each option manually.

To do this, follow the steps below:

  1. Create an @observable Array<string> with the options to be available in your combo-box:
import {... , observable} from '@microsoft/fast-element';
...
export class TEMPLATE extends FASTElement {
...
@observable options: Array<string> = []
...
}

With this variable created, you can generate any array you wish using a loop. Here is a simple example:

    for (let i = 0; i < 4; i++) {
this.options.push("Label " + i);
}
  1. Use the repeat directive to create an <alpha-option> for each element you have in options
import {... , repeat} from '@microsoft/fast-element';
...
...
<alpha-combobox>
${repeat(x => x.options, html`<zero-option>${x => x}</zero-option>`)}
</alpha-combobox>
...
...

The repeat directive takes two arguments:

  • The first one is the array/object to be iterated. In the code above, we have x => x.options because the variable we created is a simple array named options.
  • The second is the component to be repeated for each element in the array/object passed in the first argument. In this case, we are repeating the component alpha-option.

If you are not familiar with the repeat directive, take a look at the Microsoft Fast documentation.

Try yourself

Live Editor
<alpha-combobox>
  <alpha-option>Try</alpha-option>
  <alpha-option>Your</alpha-option>
  <alpha-option>Self</alpha-option>
</alpha-combobox>
Result
Loading...

Use cases

  • Selecting pre-defined values
  • Sorting
  • Filtering

Additional resources