Skip to main content

MVCxGridViewProperties.SearchPanelEditorCreate Property

Enables you to replace the default built-in GridView’s search panel editor with custom one.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public ASPxGridViewSearchPanelEditorCreateEventHandler SearchPanelEditorCreate { get; set; }

Property Value

Type Description
ASPxGridViewSearchPanelEditorCreateEventHandler

A ASPxGridViewSearchPanelEditorCreateEventHandler delegate method allowing you to implement custom processing.

Remarks

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.

See Also