Skip to main content

GridSettingsBase.FilterControlCustomValueDisplayText Property

Enables you to specify the entered filter value’s custom display text to be displayed when the filter’s condition value editor is inactive.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public FilterControlCustomValueDisplayTextEventHandler FilterControlCustomValueDisplayText { get; set; }

Property Value

Type Description
FilterControlCustomValueDisplayTextEventHandler

A FilterControlCustomValueDisplayTextEventHandler delegate method allowing you to implement custom processing.

Remarks

The FilterControlCustomValueDisplayText event enables you to provide a custom display text for the filter value entered into the built-in filter. This custom text is displayed within a condition value editor when it’s inactive.

The event’s FilterControlCustomValueDisplayTextEventArgs.Value property allows the currently entered value to be obtained. Set the FilterControlCustomValueDisplayTextEventArgs.DisplayText property to specify the value’s custom display text, if required.

See Also