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

MVCxFilterControlSettings.ParseValue Property

Enables you to process and modify an entered value before it is actually accepted by the extension.

Namespace: DevExpress.Web.Mvc

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

Declaration

public FilterControlParseValueEventHandler ParseValue { get; set; }

Property Value

Type Description
FilterControlParseValueEventHandler

An FilterControlParseValueEventHandler delegate method allowing you to implement custom processing.

Remarks

Each time an end-user modifies a filter condition within the control, this condition is converted to the expression value (the MVCxFilterControlSettings.FilterExpression property). The ParseValue event enables you to implement custom filter condition conversion.

See Also