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

ASPxGridBase.FilterControlCriteriaValueEditorCreate Event

Enables you to replace the default criteria value editor with a custom one.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

public event FilterControlCriteriaValueEditorCreateEventHandler FilterControlCriteriaValueEditorCreate

Event Data

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

Property Description
Column Gets the column whose editor is being created.
EditorProperties Gets or sets the processed editor properties.
Value Gets or sets the processed editor value.

Remarks

The FilterControlCriteriaValueEditorCreate event is raised for an editor in the criteria value, and enables you to replace the default editor with a custom one.

To change the editor, use the event parameter’s FilterControlCriteriaValueEditorCreateEventArgs.EditorProperties property. The editor’s value is specified by the FilterControlCriteriaValueEditorCreateEventArgs.Value property.

See Also