Class DataGridLoadColumnFilterDataEventArgs<T>
Supplies information about a LoadColumnFilterData event that is being raised.
Inherited Members
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class DataGridLoadColumnFilterDataEventArgs<T>
Type Parameters
| Name | Description |
|---|---|
| T | The data item type. |
Constructors
DataGridLoadColumnFilterDataEventArgs()
Supplies information about a LoadColumnFilterData event that is being raised.
Declaration
public DataGridLoadColumnFilterDataEventArgs()
Properties
Column
Gets the RadzenDataGridColumn.
Declaration
public RadzenDataGridColumn<T> Column { get; }
Property Value
| Type | Description |
|---|---|
| RadzenDataGridColumn<T> |
Count
Gets or sets the total data count.
Declaration
public int Count { get; set; }
Property Value
| Type | Description |
|---|---|
| int | The total data count. |
Data
Gets or sets the data.
Declaration
public IEnumerable Data { get; set; }
Property Value
| Type | Description |
|---|---|
| IEnumerable | The data. |
Filter
Gets the filter expression as a string.
Declaration
public string Filter { get; }
Property Value
| Type | Description |
|---|---|
| string | The filter. |
Property
Gets or sets filter property used to limit and distinct values, if not set, args.Data are used as values.
Declaration
public string Property { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The filter property. |
Skip
Gets how many items to skip. Related to paging and the current page. Usually used with the Skip<TSource>(IEnumerable<TSource>, int) LINQ method.
Declaration
public int? Skip { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Top
Gets how many items to take. Related to paging and the current page size. Usually used with the Take<TSource>(IEnumerable<TSource>, int) LINQ method.
Declaration
public int? Top { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The top. |