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

ASPxGridBehaviorSettings.HeaderFilterMaxRowCount Property

Gets or sets the maximum number of records that are scanned to populate a header filter dropdown with unique filter values.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(-1)]
public int HeaderFilterMaxRowCount { get; set; }

Property Value

Type Default Description
Int32 -1

An integer value specifying the maximum number of records whose field values can be displayed within a header filter dropdown.

Property Paths

You can access this nested property as listed below:

Show 16 property paths
Library Object Type Path to HeaderFilterMaxRowCount
ASP.NET Bootstrap Controls BootstrapCardView
.SettingsBehavior.HeaderFilterMaxRowCount
BootstrapGridView
.SettingsBehavior.HeaderFilterMaxRowCount
ASP.NET Web Forms Controls ASPxCardView
.SettingsBehavior.HeaderFilterMaxRowCount
ASPxGridView
.SettingsBehavior.HeaderFilterMaxRowCount
ASPxVerticalGrid
.SettingsBehavior.HeaderFilterMaxRowCount
GridViewProperties
.SettingsBehavior.HeaderFilterMaxRowCount
CardViewSettings
.SettingsBehavior.HeaderFilterMaxRowCount
CardViewSettings<CardType>
.SettingsBehavior.HeaderFilterMaxRowCount
GridViewSettings
.SettingsBehavior.HeaderFilterMaxRowCount
GridViewSettings<RowType>
.SettingsBehavior.HeaderFilterMaxRowCount
MVCxCardView
.SettingsBehavior.HeaderFilterMaxRowCount
MVCxGridView
.SettingsBehavior.HeaderFilterMaxRowCount
MVCxGridViewProperties
.SettingsBehavior.HeaderFilterMaxRowCount
MVCxVerticalGrid
.SettingsBehavior.HeaderFilterMaxRowCount
VerticalGridSettings
.SettingsBehavior.HeaderFilterMaxRowCount
VerticalGridSettings<ColumnType>
.SettingsBehavior.HeaderFilterMaxRowCount

Remarks

The default property value (-1) specifies that all the unique values in the column are displayed within a header filter dropdown. Setting the HeaderFilterMaxRowCount property to a positive integer limits the number of data source records that provide values. In this case, data rows are scanned starting from the first row up to the specified limit and values are added only once to the filter dropdown.

See Also