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

TcxTreeListFiltering.RunCustomizeDialog(TcxTreeListColumn) Method

Displays a filter customization dialog.

#Declaration

Delphi
procedure RunCustomizeDialog(AColumn: TcxTreeListColumn = nil); reintroduce; virtual;

#Parameters

Name Type
AColumn TcxTreeListColumn

#Remarks

Pass nil as a parameter or omit it to display the Filter Builder dialog for the TreeList control. Otherwise, you can pass a column to display the Custom Filter dialog for it. This is equivalent to selecting the Custom… item in the column’s filter dropdown.

The RunCustomizeDialog procedure fires the TreeList control’s OnFilterDialogShow event that enables you to prevent the dialog from being displayed or substitute it with your own.

See Also