...import {CarbonListComponent} from'@valtimo/components';...exportclassSampleComponent {...// We need access to the carbonListComponent in order to get the selected items. @ViewChild(CarbonListComponent) carbonListComponent:CarbonListComponent<any>;...publicsampleAction():void {constselectedItems=this.carbonList.selectedItems;// Code to process selected items }...}...
This will create a list with multi-select enabled: