Skip to main content
Tab

ASPxFilterControlBase.CriteriaValueEditorInitialize Event

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

public event FilterControlCriteriaValueEditorInitializeEventHandler CriteriaValueEditorInitialize

#Event Data

The CriteriaValueEditorInitialize 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 CriteriaValueEditorInitialize 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