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

ASPxGridSettings.ShowFilterBar Property

Gets or sets a value which specifies when the filter bar is displayed.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

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:

Show 16 property paths
Library Object Type Path to ShowFilterBar
ASP.NET Controls and MVC Extensions ASPxCardView
.Settings .ShowFilterBar
ASPxGridView
.Settings .ShowFilterBar
ASPxVerticalGrid
.Settings .ShowFilterBar
GridViewProperties
.Settings .ShowFilterBar
ASP.NET Bootstrap Controls BootstrapCardView
.Settings .ShowFilterBar
BootstrapGridView
.Settings .ShowFilterBar
ASP.NET MVC Extensions CardViewSettings
.Settings .ShowFilterBar
CardViewSettings<CardType>
.Settings .ShowFilterBar
GridViewSettings
.Settings .ShowFilterBar
GridViewSettings<RowType>
.Settings .ShowFilterBar
MVCxCardView
.Settings .ShowFilterBar
MVCxGridView
.Settings .ShowFilterBar
MVCxGridViewProperties
.Settings .ShowFilterBar
MVCxVerticalGrid
.Settings .ShowFilterBar
VerticalGridSettings
.Settings .ShowFilterBar
VerticalGridSettings<ColumnType>
.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.

See Also