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

ASPxGridBase.FilterControlCriteriaValueEditorInitialize Event

Enables the editors displayed within the criteria value to be initialized.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public event FilterControlCriteriaValueEditorInitializeEventHandler FilterControlCriteriaValueEditorInitialize

Event Data

The FilterControlCriteriaValueEditorInitialize event's data class is FilterControlCriteriaValueEditorInitializeEventArgs. The following properties provide information specific to this event:

Property Description
Column Gets the column whose editor is being initialized.
Editor Gets the processed editor.
Value Gets the processed editor value.

Remarks

The FilterControlCriteriaValueEditorInitialize event enables you to customize criteria value editor properties.

The event parameter’s FilterControlCriteriaValueEditorInitializeEventArgs.Column property identifies the column whose editor is being initialized. The processed editor is returned by the FilterControlCriteriaValueEditorInitializeEventArgs.Editor property. Its value is returned by the FilterControlCriteriaValueEditorInitializeEventArgs.Value property.

See Also