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

Events

Updated on Aug 31, 2026

This article describes the Blazor ChipList events and provides a runnable example with sample event handler implementations.

OnRemove

The OnRemove event fires when the user clicks the remove icon on any chip in the ChipList. The event handler receives a ChipListRemoveEventArgs object which provides the removed chip in the Item field that you can cast to your model type. You can cancel the event by setting the IsCancelled field to true.

SelectedItemsChanged

The SelectedItemsChanged fires when the user selects a chip from the ChipList. Read the Selection article for more information on the SelectedItemsChanged event...

Example

Handle the Blazor ChipList Events

Example
View Source
Loading ...

See Also