ChipList Selection
The ChipList allows the application users to select one or more chips. This article explains how to enable the built-in selection feature.
Selection Basics
You can configure the selection behavior by setting the SelectionMode parameter to a member of the ChipListSelectionMode enum:
None- the default value. Use this to disable the chip selection.SingleMultiple
The selected chips will be stored in the SelectedItems collection (IEnumerable<TItem>). You can use it with one way binding and [two way binding (the @bind-SelectedItems syntax)](#two way binding).
One way Binding
Use the SelectedItems parameter together with the SelectedItemsChanged event when you need to respond to the user selection and add some additional application logic.
Two way Binding
When you use the @bind-SelectedItems syntax, the ChipList will automatically update the SelectedItems collection when the user change the selection.