Skip to main content
Tab

ASPxGridViewSettings.ShowFilterRowMenu Property

Specifies whether the grid displays filter row buttons within the filter row.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean false

true to display filter row buttons; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowFilterRowMenu
ASPxGridView
.Settings .ShowFilterRowMenu
GridViewProperties
.Settings .ShowFilterRowMenu

Remarks

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

veAutoFilterRow

<dx:ASPxGridView ID="ASPxGridView1" runat="server">
    <%--...--%>
    <Settings ShowFilterRow="true" ShowFilterRowMenu="true" />
</dx:ASPxGridView>
See Also