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

TreeListSettings.ShowFilterBar Property

Gets or sets a value which specifies when the Filter Bar is displayed.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v19.1.dll

Declaration

[DefaultValue(GridViewStatusBarMode.Hidden)]
public GridViewStatusBarMode ShowFilterBar { get; set; }

Property Value

Type Default Description
GridViewStatusBarMode **Hidden**

A GridViewStatusBarMode enumeration value that specifies when the filter bar is displayed.

Available values:

Name Description
Auto
  • A status bar is displayed if the SettingsLoadingPanel.Mode property is set to ShowOnStatusBar.
  • A filter bar is displayed if the grid’s data has been filtered.
Hidden

An element isn’t shown within the grid.

Visible

An element is always displayed at the bottom of the grid.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowFilterBar
ASPxGantt
.Settings.ShowFilterBar
ASPxTreeList
.Settings.ShowFilterBar
GanttSettings
.Settings.ShowFilterBar
MVCxGantt
.Settings.ShowFilterBar
MVCxTreeList
.Settings.ShowFilterBar
TreeListSettings
.Settings.ShowFilterBar
TreeListSettings<RowType>
.Settings.ShowFilterBar

Remarks

By default, the filter bar isn’t displayed. To automatically display the filter bar after the grid’s data has been filtered, set the ShowFilterBar property to Auto. To always display the filter bar, set the ShowFilterBar property to Visible.

Note

Online Demos Refer to the Tree List - Filter Control online demo to review how to filter Tree List data nodes using the Filter Control.

See Also