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

MVCxFilterControlColumn.PropertyName Property

Gets or sets a filter property’s name.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.1.dll

Declaration

public override string PropertyName { get; set; }

Property Value

Type Description
String

A string value that specifies the filter property’s name.

Remarks

Use the PropertyName property to specify the name of the data source field to which the current filter column corresponds. For example, if the FilterControl is used to filter the GridView’s data, the filter control’s columns should correspond to the grid view’s columns. In this instance, a filter column’s PropertyName property must match the corresponding grid view column’s GridViewDataColumn.FieldName property value.

To specify the filter column’s caption displayed within the FilterControl, use the FilterControlColumn.DisplayName property.

See Also