aspnet-devexpress-dot-web-dot-aspxverticalgrid-e75940fa.md
Enables you to replace the default search panel editor with a custom one.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public event ASPxVerticalGridSearchPanelEditorCreateEventHandler SearchPanelEditorCreate
Public Event SearchPanelEditorCreate As ASPxVerticalGridSearchPanelEditorCreateEventHandler
The SearchPanelEditorCreate event's data class is ASPxVerticalGridSearchPanelEditorCreateEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| EditorProperties | Gets or sets the filter cell’s editor. Inherited from ASPxGridEditorCreateEventArgs. |
| Value | Gets or sets the filter cell’s value. Inherited from ASPxGridEditorCreateEventArgs. |
The SearchPanelEditorCreate event is raised for an editor within the search panel, and enables you to replace the default editor with a custom one.
To change the editor, use the event parameter’s ASPxGridEditorCreateEventArgs.EditorProperties property. The editor’s value is specified by the ASPxGridEditorCreateEventArgs.Value property.
To learn more about the search panel, see the Search Panel topic.
See Also