Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxGridViewData.FilterRow Property

Provides access to the filter row.

#Declaration

Delphi
property FilterRow: TcxGridFilterRow read;

#Property Value

Type Description
TcxGridFilterRow

A filter row.

#Remarks

The filter row complements the filter box in a grid Table View. The filter row allows users to specify filter criteria for individual columns.

VCL Data Grid: Filter Row and Panel

Alternatively, users can invoke a filter drop-down window in a column header.

#Code Example: Focus the Filter Row and Activate the Filter Row Editor

The following code example moves focus to the Filter Row and activates its in-place editor:

var
  AView: TcxGridTableView;
begin
  AView := cxGridTableView1;
  AView.Controller.FocusedRow := AView.ViewData.FilterRow;
  AView.Controller.EditingController.ShowEdit;
end;
See Also