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

TdxFilterPopupWindowMode Enum

Enumerates filter dropdown types that container control items use.

#Declaration

Delphi
TdxFilterPopupWindowMode = (
    fpmDefault,
    fpmClassic,
    fpmExcel
);

#Members

Name
fpmDefault
fpmClassic
fpmExcel

#Remarks

Options include:

Value

Description

Example

fpmDefault

A more global setting determines which dropdown type is considered “default” (for instance, an item uses its container control’s setting or the control uses the global constant value, etc.)

fpmDefault and fpmClassic values are equivalent as the dxDefaultFilterPopupWindowMode global constant values. Both values indicate that the “classic” dropdown is the default filter dropdown type for DevExpress data presentation controls.

fpmClassic

A container control item shows a classic filter dropdown.

fpmClassic and fpmDefault are equivalent as the dxDefaultFilterPopupWindowMode global constant’s values. Both values indicate that the “classic” dropdown is the default filter dropdown type for DevExpress data presentation controls.

fpmExcel

A container control item shows a filter dropdown similar to the one found in Microsoft Excel®.

An Excel-inspired filter dropdown includes two pages accessible via the Values and Filters tabs:

  • The Values page allows users to select individual filter items, value groups or ranges depending on the source value type and the dropdown’s settings.

  • The Filters page allows users to select filter criteria for string, date-time, and numeric values. The filter dropdown shows only the Values page in the case of all other value types. The Filters page provides extensive filter criteria options that depend on the data type for which the filter dropdown is invoked.

The following public API members reference the TdxFilterPopupWindowMode type:

See Also