New to Telerik UI for BlazorStart a free 30-day trial

ChipList Selection

Updated on Aug 31, 2026

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.
  • Single
  • Multiple

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.

Example
View Source
Loading ...

Two way Binding

When you use the @bind-SelectedItems syntax, the ChipList will automatically update the SelectedItems collection when the user change the selection.

Example
View Source
Loading ...

See Also