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

TreeListOptionsFilter.ColumnFilterPopupMode Property

Gets or sets whether pop-up filter menus are displayed in the Excel or Classic style.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

#Declaration

[DefaultValue(ColumnFilterPopupMode.Default)]
[XtraSerializableProperty]
public ColumnFilterPopupMode ColumnFilterPopupMode { get; set; }

#Property Value

Type Default Description
ColumnFilterPopupMode Default

A value that specifies whether pop-up filter menus are displayed in the Excel or Classic style.

Available values:

Name Description
Default

Inherites the WindowsFormsSettings.ColumnFilterPopupMode property value.

Excel

Menu contains two tabs: a value checklist and data-specific predefined filters.

Classic

Menu contains a value list or a calendar depending on the data type.

#Property Paths

You can access this nested property as listed below:

Object Type Path to ColumnFilterPopupMode
TreeList
.OptionsFilter .ColumnFilterPopupMode

#Remarks

Pop-up filter menus can be displayed in the following styles:

  • Excel

    TreeList_PopupFilterMenu_Excel

  • Classic

    TreeList_PopupFilterMenu_Classic

    The Classic-style filter menu depends on a column’s data type:

    • List or Checklist
    • Calendar for date-time columns

      image

To specify the menu style:

See Pop-up Filter Menus for more information.

See Also