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

ASPxGridSettings.ShowHeaderFilterButton Property

Gets or sets whether column/row headers display filter buttons.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

[DefaultValue(false)]
public bool ShowHeaderFilterButton { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to display filter buttons in headers; otherwise, false.

Property Paths

You can access this nested property as listed below:

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

Remarks

Find control-specific information (for ASPxGridView, ASPxCardView or ASPxVerticalGrid) in the sections below.

ASPxGridView

End-users can filter data using filter dropdowns invoked by clicking on a filter button displayed in column headers. By default, these buttons are hidden. Set the ShowHeaderFilterButton property to true to display filter buttons and allow end-users to filter data. Individual columns provide the GridDataColumnSettings.AllowHeaderFilter option that enables you to override the default behavior.

End-users can also filter data using the auto filter row. Its visibility is specified by the ASPxGridViewSettings.ShowFilterRow property.

Grid View - Getting Started

Header Filter

Online demo: Grid - Header Filter

ASPxCardView

End-users can filter data using filter dropdowns invoked by clicking on a filter button displayed in column headers. By default, these buttons are hidden. Set the ShowHeaderFilterButton property to true to display filter buttons and allow end-users to filter data. Individual columns provide the GridDataColumnSettings.AllowHeaderFilter option that enables you to override the default behavior.

Card View - Getting Started

Header Filter

Online demo: Card View - Header Filter

ASPxVerticalGrid

End-users can filter data using filter dropdowns invoked by clicking on a filter button displayed in row headers. By default, these buttons are hidden. Set the ShowHeaderFilterButton property to true to display filter buttons and allow end-users to filter data. Individual rows provide the GridDataColumnSettings.AllowHeaderFilter option that enables you to override the default behavior.

Vertical Grid - Getting Started

Header Filter

Online demo: Vertical Grid - Header Filter

See Also