| title | Single Select ComboBox Component |
|---|---|
| description | The Ignite UI for Angular ComboBox provides a powerful input, combining features of the basic HTML input, select, filtering and custom drop-down lists. Try it for FREE |
| keywords | angular combobox, ignite ui for angular, infragistics |
The Angular Simple ComboBox component is a modification of ComboBox component that allows single selection. Simple combobox is an editable input that allows users to choose an option from a predefined list of items. The Ignite UI for Angular Simple ComboBox Component provides also filtering capabilities, selections of items, grouping and adding custom values to a dropdown list. It can be used as an alternative to the HTML select tag and has several out-of-the-box features such as data binding (local and remote), filtering, grouping, custom templates, custom values, and more.
In this Angular Simple ComboBox example, you can see how users can select the chart's trend line type. In addition, the Simple ComboBox expose keyboard navigation and custom styling capabilities.
The simple combobox control exposes the following features: - Data Binding - local data and remote data - Value Binding - Filtering - Grouping - Custom Values - Templates - Integration with Template Driven Forms and Reactive Forms
To get started with the Simple ComboBox component, first you need to import the IgxSimpleComboModule in your app.module.ts file:
import { IgxSimpleComboModule } from 'igniteui-angular';
@NgModule({
imports: [
...
IgxSimpleComboModule,
...
]
})
export class AppModule {}Then, in the template, you should bind the igx-simple-combo with some data.
export class MySimpleComboComponent implements OnInit {
public cities: { name: string, id: string }[] = [];
public ngOnInit() {
this.cities = [{ name: 'London', id: 'UK01' }, { name: 'New York', id: 'US01' }, ...];
}
}<igx-simple-combo [data]="cities"></igx-simple-combo>Our simple combobox is now bound to the array of cities.
Since the simple combobox is bound to an array of complex data (i.e. objects), we need to specify a property that the control will use to handle the selected items. The control exposes two @Input properties - valueKey and displayKey:
valueKey- Optional, recommended for object arrays - Specifies which property of the data entries will be stored for the simple combobox's selection. IfvalueKeyis omitted, the simple combobox value will use references to the data entries (i.e. the selection will be an array of entries fromigxSimpleCombo.data).displayKey- Required for object arrays - Specifies which property will be used for the items' text. If no value is specified fordisplayKey, the simple combobox will use the specifiedvalueKey(if any).
In our case, we want the simple combobox to display the name of each city and the simple combobox value to store the id of each city. Therefore, we are providing these properties to the simple combobox's displayKey and valueKey, respectively:
<igx-simple-combo [data]="cities" [displayKey]="'name'" [valueKey]="'id'"></igx-simple-combo>Note
When the data source is comprised of a simple type (e.g. string[], number[]), do not specify a valueKey and displayKey.
The simple combobox component fully supports two-way data-binding with [(ngModel)] as well as usage in template driven and reactive forms. The simple combobox selection can be accessed either through two-way binding or through the selection API. We can pass an item of the same type as the ones in the simple combobox's selection (based on valueKey) and any time one changes, the other is updated accordingly.
In the following example, the Sofia city will initially be selected. Any further changes in the simple combobox's selection will reflect on the selectedCities.
<igx-simple-combo [data]="cities" [(ngModel)]="selectedCity" [displayKey]="'name'" [valueKey]="'id'"></igx-simple-combo>export class MySimpleComboComponent {
public cities: { name: string, id: string }[] = [
{ name: 'Sofia', id: 'BG01' }, { name: 'London', id: 'UK01' }, ...];
public selectedCity: string = 'BG01';
}
Two-way binding can also be achieved without a specified valueKey. For example, if valueKey is omitted, the bound model will look like this:
export class MySimpleComboComponent {
public cities: { name: string, id: string }[] = [
{ name: 'Sofia', id: 'BG01' }, { name: 'London', id: 'UK01' }, ...];
public selectedCity: { name: string, id: string } = this.cities[0];
}The simple combobox component exposes API that allows getting and manipulating the current selection state of the control.
One way to get the simple combobox's selection is via the selection property. It returns a value which correspond to the selected item, depending on the specified valueKey (if any).
In our example, selection will return the selected city's id:
export class MySimpleComboComponent {
...
public selection: string = this.simpleCombo.selection;
}Using the selection API, you can also change the simple combobox's selected item without user interaction with the control - via a button click, as a response to an Observable changing, etc. For example, we can implement a button that selects a city, using the select() method:
<igx-simple-combo [data]="cities" [displayKey]="'name'" [valueKey]="'id'"></igx-simple-combo>
<button igxButton (click)="selectFavorite()">Select Favorite</button>When clicking the button, the London city will be added to the simple combobox's selection:
export class MySimpleComboComponent {
@ViewChild(IgxSimpleComboComponent, { read: IgxSimpleComboComponent, static: true })
public simpleCombo: IgxSimpleComboComponent;
...
selectFavorites(): void {
this.simpleCombo.select('UK01');
}
}The simple combobox also fires an event every time its selection changes - selectionChanging(). The emitted event arguments, ISimpleComboSelectionChangingEventArgs, contain information about the selection prior to the change, the current selection and the displayed item. The event can also be cancelled, preventing the selection update with the new item.
Binding to the event can be done through the proper @Output property on the igx-simple-combo tag:
<igx-simple-combo [data]="cities" [displayKey]="'name'" [valueKey]="'id'"
(selectionChanging)="handleCityChange($event)">
</igx-simple-combo>When simple combobox is closed and focused:
ArrowDownorAlt+ArrowDownwill open the simple combobox's drop down.
Note
Any other key stroke will be handled by the input.
When simple combobox is opened and list item is focused:
-
ArrowDownwill move to the next list item. If the active item is the last one in the list and custom values are enabled, the focus will be moved to the Add item button. -
ArrowUpwill move to the previous list item. If the active item is the first one in the list will close the list. -
Endwill move to the last list item. -
Homewill move to the first list item. -
Spacewill select/deselect the active list item. -
Enterwill select/deselect the active list item and will close the list. -
Escwill close the list.
When combobox is opened, allow custom values are enabled and add item button is focused:
-
Enterwill add a new item withvalueKeyanddisplayKeyequal to the text in the search input and will select the new item. -
ArrowUpfocus will be moved back to the last list item or if the list is empty, will close the list.
The following sample demonstrates a scenario where the igx-simple-combo is used:
The API of simle combobox is used to get the selected item from one component and load data source for the next one, as well clear the selection and data source when needed.
<igx-simple-combo #country
(selectionChanging)="countryChanging($event)"
[(ngModel)]="selectedCountry"
[data]="countriesData"
[displayKey]="'name'"></igx-simple-combo>
<igx-simple-combo #province
(selectionChanging)="provinceChanging($event)"
[disabled]="regionData.length === 0"
[(ngModel)]="selectedRegion"
[data]="regionData"
[displayKey]="'name'">
</igx-simple-combo>
<igx-simple-combo #city
placeholder="Choose City..."
[disabled]="citiesData.length === 0"
[(ngModel)]="selectedCity"
[data]="citiesData"
[displayKey]="'name'">
</igx-simple-combo>export class SimpleComboCascadingComponent implements core.OnInit {
public selectedCountry: Country;
public selectedRegion: Region;
public selectedCity: City;
public countriesData: Country[];
public regionData: Region[] = [];
public citiesData: City[] = [];
ngOnInit(): void {
this.countriesData = cities;
}
public countryChanging(e: ISimpleComboSelectionChangingEventArgs) {
this.selectedCountry = e.newSelection as Country;
this.regionData = cities
.filter(c => c.country === this.selectedCountry?.name)
.map(c => ({name: c.region, country: c.country}))
.filter((v, i, a) => a.findIndex(r => r.name === v.name) === i);
this.selectedRegion = null;
this.selectedCity = null;
this.citiesData = [];
}
public provinceChanging(e: ISimpleComboSelectionChangingEventArgs) {
this.selectedRegion = e.newSelection as Region;
this.citiesData = cities
.filter(c => c.country === this.selectedRegion?.country && c.region === this.selectedRegion?.name);
this.selectedCity = null;
}
}Using the Ignite UI for Angular Theming, we can greatly alter the simple combobox appearance. First, in order for us to use the functions exposed by the theme engine, we need to import the index file in our style file:
@import '~igniteui-angular/lib/core/styles/themes/index';Following the simplest approach, we create a new theme that extends the combo-theme and accepts the $search-separator-border-color parameter:
$custom-simple-combo-theme: combo-theme(
$empty-list-background: #1a5214
);The IgxSimpleComboComponent uses the IgxDropDownComponent internally as an item container. It also includes the IgxInputGroup component. Creating new themes, that extend these components' themes, and scoping them under the respective classes will let's you change the simple combobox styles:
$custom-drop-down-theme: drop-down-theme(
$background-color: #d9f5d6,
$header-text-color: #1a5214,
$item-text-color: #1a5214,
$focused-item-background: #72da67,
$focused-item-text-color: #1a5214,
$hover-item-background: #a0e698,
$hover-item-text-color: #1a5214,
$selected-item-background: #a0e698,
$selected-item-text-color: #1a5214,
$selected-hover-item-background: #72da67,
$selected-hover-item-text-color: #1a5214,
$selected-focus-item-background: #72da67,
$selected-focus-item-text-color: #1a5214,
);The last step is to include the component's theme.
:host {
@include css-vars($custom-combo-theme);
@include css-vars($custom-drop-down-theme);
}Note
The IgxSimpleCombo component uses the IgxOverlay service to hold and display the simple combobox items list container. To properly scope your styles you might have to use an OverlaySetting.outlet. For more details check the IgxOverlay Styling Guide.
Note
The default type of the IgxSimpleCombo is box unlike the IgxSelect where it is line.
- When the simple combobox is bound to an array of primitive data which contains
undefined(i.e.[ undefined, ...]),undefinedis not displayed in the dropdown. When it is bound to an array of complex data (i.e. objects) and the value used forvalueKeyisundefined, the item will be displayed in the dropdown, but cannot be selected. - When the simple combobox is bound via
ngModeland is marked asrequired,null,undefinedand''values cannot be selected. - When the simple combobox is bound to a remote service and there is a predefined selection, its input will remain blank until the requested data is loaded.
Note
The simple combobox uses igxForOf directive internally hence all igxForOf limitations are valid for the simple combobox. For more details see igxForOf Known Issues section.
- IgxSimpleComboComponent
- IgxComboComponent Styles
Additional components and/or directives with relative APIs that were used:
- IgxDropDownComponent
- IgxInputGroupComponent
- IgxDropDown Theme
- IgxIcon Theme
- IgxOverlay Theme
- ComboBox Features
- ComboBox Remote Binding
- ComboBox Templates
- Template Driven Forms Integration
- Reactive Forms Integration
Our community is active and always welcoming to new ideas.