Skip to main content
Tab

ASPxGridSettings.ShowHeaderFilterButton Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean false

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

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 - Get 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 - Get 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 - Get Started

Header Filter

Online demo: Vertical Grid - Header Filter

See Also