I am looking for an Dropdown, which looks like the following:
Does someone have an suggestions? (For example Angular Material does not seem to work for my requirements)
Thanks.
What you might be looking for is actually a library and not a framework.
Check out this multiselect npm package
Following is the settings object which you can pass in to this component to customize the behavior of your multiselect dropdown.
IDropdownSettings {
singleSelection?: boolean;
idField?: string;
textField?: string;
disabledField?: string;
enableCheckAll?: boolean;
selectAllText?: string;
unSelectAllText?: string;
allowSearchFilter?: boolean;
clearSearchFilter?: boolean;
maxHeight?: number;
itemsShowLimit?: number;
limitSelection?: number;
searchPlaceholderText?: string;
noDataAvailablePlaceholderText?: string;
closeDropDownOnSelection?: boolean;
showSelectedItemsAtTop?: boolean;
defaultOpen?: boolean;
allowRemoteDataSearch?: boolean;
}