EnumMultiSelectTagMode
Defines how selected items are visually represented as tags within the MultiSelect input area. Controls whether each selection appears as an individual removable tag or consolidated into a summary display. Choose based on available space, number of expected selections, and user interaction patterns.
Definition
Namespace:Telerik.Blazor
Assembly:Telerik.Blazor.dll
Syntax:
public enum MultiSelectTagMode
Fields
Multiple
Displays each selected item as an individual removable tag (chip) within the input area. Each tag shows the item text and includes a close button for individual item removal. Provides granular control over selections but consumes more space as selection count increases. BEST FOR: When users need to see and individually manage each selected item, typical for most scenarios. RELATIONSHIP: Works with MaxAllowedTags to limit displayed tags and switch to summary when exceeded.
Single
Displays all selected items consolidated into one summary tag showing the total count. Shows text like "3 items selected" instead of individual tags for each selected item. Saves significant space when many items are selected and individual item visibility is less important. BEST FOR: Space-constrained interfaces, large selection sets, or when individual item control isn't needed. UX: Users can remove all selections at once but cannot remove individual items easily.