Skip to main content

IGrid.FilterBy(String, GridFilterRowOperatorType, Object) Method

Filters data by the specified column value.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

void FilterBy(
    string columnFieldName,
    GridFilterRowOperatorType operatorType,
    object value
)

Parameters

Name Type Description
columnFieldName String

Specifies the name of the data source field that supplies data for the processed column. If the grid does not contain the column that corresponds to the specified data field, an exception occurs.

operatorType GridFilterRowOperatorType

An enumeration value that specifies the column’s comparison operator.

value Object

Specifies a filter value.

Remarks

Refer to the FilterBy(String, GridFilterRowOperatorType, Object) method description for more information and an example.

See Also