Class ReadEventArgs
The class that describes the event arguments of the OnRead event of a Telerik component. Used to implement custom data source read operations - fetching data, paging, filtering, sorting and so on.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class ReadEventArgs : EventArgs
Constructors
ReadEventArgs()
Declaration
public ReadEventArgs()
ReadEventArgs(DataSourceRequest)
Properties
Request
Defines the DataSourceRequest instance containing the sort, filter and paging state of the Telerik component. You can use the data from it to call the appropriate API in your project in order to implement custom logic.
Declaration
public DataSourceRequest Request { get; set; }
Property Value
DataSourceRequest
|