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

ASPxVerticalGridSearchPanelSettings.RowNames Property

Specifies the rows to which the search panel filter should be applied.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("*")]
public string RowNames { get; set; }

Property Value

Type Default Description
String "*"

A string value listing grid row identifiers that can be either: row name, field name, or caption.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to RowNames
ASP.NET Controls and MVC Extensions ASPxVerticalGrid
.SettingsSearchPanel .RowNames
ASP.NET MVC Extensions MVCxVerticalGrid
.SettingsSearchPanel .RowNames
VerticalGridSettings
.SettingsSearchPanel .RowNames
VerticalGridSettings<ColumnType>
.SettingsSearchPanel .RowNames

Remarks

Use the RowNames property to specify rows to which a search panel filter should be applied. The specified strings can be either: a row name (WebColumnBase.Name), field name (VerticalGridDataRow.FieldName), or caption(WebColumnBase.Caption).

You can exclude a particular row from the filter by setting the row’s GridDataColumnSettings.AllowFilterBySearchPanel property to false.

See Also