ClassMultiSelectReadEventArgs
Event arguments for the MultiSelect OnRead event, providing data request information for custom data loading operations. Contains DataSource request details including filtering, paging, sorting, and grouping parameters. Use to implement server-side data operations, custom filtering logic, or integration with external data services. Inherits all functionality from ReadEventArgs with MultiSelect-specific context.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class MultiSelectReadEventArgs : ReadEventArgs
Inheritance: objectEventArgsReadEventArgsMultiSelectReadEventArgs
Inherited Members
Constructors
MultiSelectReadEventArgs()
Initializes a new instance of MultiSelectReadEventArgs with empty data source request. Use when creating event args for scenarios where request details will be set separately.
Declaration
public MultiSelectReadEventArgs()
MultiSelectReadEventArgs(DataSourceRequest)
Initializes a new instance of MultiSelectReadEventArgs with the specified data source request. Request contains filtering, paging, sorting, and grouping information from the component state. Use this constructor when the component automatically provides request details for data operations.
Declaration
public MultiSelectReadEventArgs(DataSourceRequest request)
Parameters
request
The data source request containing operation parameters for data loading.