GridPersistentLayout.FilterCriteria Property
A concatenation of all column filter criteria with the AND
operator.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string FilterCriteria { get; set; }
Property Value
Type | Description |
---|---|
String | The Grid filter. |
Remarks
The FilterCriteria
specifies the Grid filter that is a concatenation of all Grid column’s filter criteria with the AND
operator. You can specify a column filter criteria using any of the following techniques:
- Set both the DxGridDataColumn.FilterRowValue and DxGridDataColumn.FilterRowOperatorType property values.
- Set the GridDataColumnFilterRowCellTemplateContext.FilterCriteria property value.
Refer to the GridPersistentLayout class description for more information and an example.
See Also