aspnet-devexpress-dot-web-dot-aspxgridviewsettings-507bab86.md
Specifies whether the grid displays filter row buttons within the filter row.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(false)]
public bool ShowFilterRowMenu { get; set; }
<DefaultValue(False)>
Public Property ShowFilterRowMenu As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true to display filter row buttons; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to ShowFilterRowMenu |
|---|---|
| ASPxGridView |
.Settings .ShowFilterRowMenu
| | GridViewProperties |
.Settings .ShowFilterRowMenu
|
Set the ShowFilterRowMenu property to true to display filter row buttons within the filter row. A click on the button invokes the context menu that allows a user to select the filter criteria.
Run Demo: ASPxGridView - Data Filter Row
<dx:ASPxGridView ID="ASPxGridView1" runat="server">
<%--...--%>
<Settings ShowFilterRow="true" ShowFilterRowMenu="true" />
</dx:ASPxGridView>
See Also