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

ASPxGridViewBehaviorSettings.FilterRowMode Property

Gets or sets a value defining whether the Filter Row filter is applied automatically or on clicking the Apply button.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(GridViewFilterRowMode.Auto)]
public GridViewFilterRowMode FilterRowMode { get; set; }

Property Value

Type Default Description
GridViewFilterRowMode **Auto**

One of the GridViewFilterRowMode enumeration values.

Available values:

Name Description
Auto

Criteria specified in the filter row is applied automatically.

OnClick

Criteria specified in the filter row is applied on an ‘Apply’ button click.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to FilterRowMode
ASP.NET Controls and MVC Extensions ASPxGridView
.SettingsBehavior.FilterRowMode
GridViewProperties
.SettingsBehavior.FilterRowMode
GridViewSettings
.SettingsBehavior.FilterRowMode
GridViewSettings<RowType>
.SettingsBehavior.FilterRowMode
MVCxGridView
.SettingsBehavior.FilterRowMode
MVCxGridViewProperties
.SettingsBehavior.FilterRowMode
ASP.NET Bootstrap Controls BootstrapGridView
.SettingsBehavior.FilterRowMode

Remarks

If the ASPxGridViewSettings.ShowFilterRow property is set to true, the Filter Row is displayed at the top of the ASPxGridView data rows. It allows end-users to filter data by typing text directly into the row.

Use the FilterRowMode property to specify the mode used in the filter row:

See Also