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