Class GridDataLoadEventArgs
- Namespace
- JJMasterData.Core.UI.Events.Args
- Assembly
- JJMasterData.Core.dll
Event fired when data is ready to be loaded at GridView
public class GridDataLoadEventArgs : EventArgs
- Inheritance
-
GridDataLoadEventArgs
- Inherited Members
Properties
CurrentPage
public int CurrentPage { get; init; }
Property Value
DataSource
public List<Dictionary<string, object?>>? DataSource { get; set; }
Property Value
Filters
Filters sended to the IEntityRepository
public required Dictionary<string, object?> Filters { get; init; }
Property Value
OrderBy
public OrderByData? OrderBy { get; init; }
Property Value
RecordsPerPage
public int RecordsPerPage { get; init; }
Property Value
TotalOfRecords
Total count of records at the entity
public int TotalOfRecords { get; set; }