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

Event arguments for the MultiSelect OnSelectAll event, fired when the user triggers the Select All action. Contains the items that are currently available (visible/loaded) in the list at the moment of the action. The developer can use these items to accept them directly as the new selection value, or replace them with a complete dataset (e.g., all item IDs from a server) if needed.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Type Parameters:

TItem

Syntax:

C#
public class MultiSelectSelectAllEventArgs<TItem>

Inheritance: objectMultiSelectSelectAllEventArgs<TItem>

Constructors

C#
public MultiSelectSelectAllEventArgs()

Properties

Gets the items currently available in the list (visible/loaded) at the time the Select All action was triggered. Use these items to set the new selection, or replace them with a different collection (e.g., a full server-side list).

C#
public IEnumerable<TItem> Items { get; set; }