Class
MultiSelectSummaryTagTemplateContext<TItem>

Provides context data for customizing the summary tag template when multiple selected items are consolidated into a single tag display. Contains information about selected items that can be used to create meaningful summary representations. Use properties to display item counts, preview selected items, or create custom aggregated displays.

Definition

Namespace:Telerik.Blazor.Components.MultiSelect.Models

Assembly:Telerik.Blazor.dll

Type Parameters:

TItem

Syntax:

cs-api-definition
public class MultiSelectSummaryTagTemplateContext<TItem>

Inheritance: objectMultiSelectSummaryTagTemplateContext<TItem>

Constructors

MultiSelectSummaryTagTemplateContext()

Declaration

cs-api-definition
public MultiSelectSummaryTagTemplateContext()

Properties

Items

Gets the complete list of currently selected data items that are being summarized in this tag. Contains all selected items regardless of individual tag visibility settings. Use to access item properties for custom summary content, counting, or preview generation. USAGE: Access individual item data for rich summary displays beyond simple counts.

Declaration

cs-api-definition
public List<TItem> Items { get; set; }

Property Value

List<TItem>