Skip to main content
A newer version of this page is available. .

TreeListOptionsCustomization.AllowFilter Property

Gets or sets whether users can filter data using pop-up filter menus and filter panel. This property does not affect filtering in code.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool AllowFilter { get; set; }

Property Value

Type Default Description
Boolean **true**

true, if pop-up filter menus are enabled; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to AllowFilter
WinForms Controls ResourcesTree
.OptionsCustomization.AllowFilter
TreeList
.OptionsCustomization.AllowFilter
Reporting XRDesignFieldList
.OptionsCustomization.AllowFilter
XRDesignReportExplorer
.OptionsCustomization.AllowFilter

Remarks

To prohibit using pop-up filter menus and the filter panel, set the AllowFilter property to false. To override this setting for a particular column, use the TreeListColumn.OptionsFilter.AllowFilter property (see TreeListOptionsColumnFilter.AllowFilter).

If filtering is disabled for users, you can still apply filters in code:

See Also