Table of Contents

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

int

DataSource

public List<Dictionary<string, object?>>? DataSource { get; set; }

Property Value

List<Dictionary<string, object>>

Filters

Filters sended to the IEntityRepository

public required Dictionary<string, object?> Filters { get; init; }

Property Value

Dictionary<string, object>

OrderBy

public OrderByData? OrderBy { get; init; }

Property Value

OrderByData

RecordsPerPage

public int RecordsPerPage { get; init; }

Property Value

int

TotalOfRecords

Total count of records at the entity

public int TotalOfRecords { get; set; }

Property Value

int