Skip to main content
Tab

ASPxVerticalGridSearchPanelSettings.RowNames Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.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:

Object Type Path to RowNames
ASPxVerticalGrid
.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