aspnet-devexpress-dot-web-dot-aspxgridsettings-0ffe1e33.md
Gets or sets whether column/row headers display filter buttons.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(false)]
public bool ShowHeaderFilterButton { get; set; }
<DefaultValue(False)>
Public Property ShowHeaderFilterButton As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true, to display filter buttons in headers; otherwise, false.
|
Find control-specific information (for ASPxGridView, ASPxCardView or ASPxVerticalGrid) in the sections below.
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.
Online demo: Grid - Header Filter
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.
Online demo: Card View - Header Filter
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.
Online demo: Vertical Grid - Header Filter
See Also