Class GridReadEventArgs
The class that describes the event arguments of the OnRead event of the grid. Used to implement custom data source read operations - fetching data, paging, filtering, sorting and so on.
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class GridReadEventArgs : ReadEventArgs
Constructors
GridReadEventArgs()
Declaration
public GridReadEventArgs()
GridReadEventArgs(DataSourceRequest)
Declaration
public GridReadEventArgs(DataSourceRequest request)
Parameters
DataSourceRequest
request
|
Properties
AggregateResults
Defines the AggregateResults for the component. Use this to populate aggregate results back to the component.
Declaration
public IEnumerable<AggregateResult> AggregateResults { get; set; }
Property Value
System.Collections.Generic.IEnumerable<AggregateResult>
|