Supplies information about a Filter event that is being raised.
Object
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public class DataGridColumnFilterEventArgs<T>| Name | Description |
|---|---|
| T | The data item type. |
Supplies information about a Filter event that is being raised.
public DataGridColumnFilterEventArgs<T>()Gets the filtered RadzenDataGridColumn.
public RadzenDataGridColumn<T> Column { get; }
| Type | Description |
|---|---|
| RadzenDataGridColumn<T> | Gets the filtered RadzenDataGridColumn. |
Gets the new filter operator of the filtered column.
public FilterOperator FilterOperator { get; }
| Type | Description |
|---|---|
| FilterOperator | Gets the new filter operator of the filtered column. |
Gets the new filter value of the filtered column.
public object FilterValue { get; }
| Type | Description |
|---|---|
| object | Gets the new filter value of the filtered column. |
Gets the new logical filter operator of the filtered column.
public LogicalFilterOperator LogicalFilterOperator { get; }
| Type | Description |
|---|---|
| LogicalFilterOperator | Gets the new logical filter operator of the filtered column. |
Gets the new second filter operator of the filtered column.
public FilterOperator SecondFilterOperator { get; }
| Type | Description |
|---|---|
| FilterOperator | Gets the new second filter operator of the filtered column. |
Gets the new second filter value of the filtered column.
public object SecondFilterValue { get; }
| Type | Description |
|---|---|
| object | Gets the new second filter value of the filtered column. |