Skip to main content

TcxGridViewData.FilterRow Property

Provides access to the filter row.

Declaration

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

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