Web Components - Combobox
For information about creating forms and using our web components, see our pages on Forms.
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>
Name | Type | Description |
---|---|---|
autocomplete | string | Defines how autocompletion works in the component. It can be "inline", "list", "both", "none". Default: none |
case-sensitive | boolean | Sets whether to treat values in a case-sensitive matter. Default: false |
disabled | boolean | Similar to readonly , but with a blur on the component |
form | string | Associates 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-click | boolean | Sets whether to keep the dropdown closed when the input field is clicked. Default: false |
open | boolean | Defines whether the combolist starts opened or not. Default: false |
position | string | Places the combolist above or below the combo-box. It can be above or below . Default: it will try to fit with the page |
placeholder | string | Sets placeholder text for the element (which disappears when the user starts typing) |
value | string | Sets an initial value for this component |
autocomplete
has 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 bothinline
andlist
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:
Name | Type | Description |
---|---|---|
disabled | boolean | Disables an option so that the user cannot interact with it, but the option is still visible |
selected | boolean | Defines a default selection for the combo-box |
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
<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
<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
<alpha-combobox disabled>
<alpha-option>Christopher Eccleston</alpha-option>
<alpha-option>David Tennant</alpha-option>
<alpha-option>Matt Smith</alpha-option>
</alpha-combobox>
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:
- Create an
@observable
variable where you want to use this value:
import {... , observable} from '@genesislcap/web-core';
...
export class TEMPLATE extends GenesisElement {
...
@observable combobox: string
...
}
- Use the
sync
function to insert the value from the component into the variablecombobox
:
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:
- Create an
@observable Array<string>
with the options to be available in your combo-box:
import {... , observable} from '@genesislcap/web-core';
...
export class TEMPLATE extends GenesisElement {
...
@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);
}
- Use the
repeat
directive to create an<alpha-option>
for each element you have inoptions
import {... , repeat} from '@genesislcap/web-core';
...
...
<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 namedoptions
. - 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
<alpha-combobox> <alpha-option>Try</alpha-option> <alpha-option>Your</alpha-option> <alpha-option>Self</alpha-option> </alpha-combobox>
Use cases
- Selecting pre-defined values
- Sorting
- Filtering