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

ASPxGridView.SearchPanelEditorCreate Event

Enables you to replace the default search panel editor with custom one.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public event ASPxGridViewSearchPanelEditorCreateEventHandler SearchPanelEditorCreate

Event Data

The SearchPanelEditorCreate event's data class is ASPxGridViewSearchPanelEditorCreateEventArgs. 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.

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.

To learn more about the search panel, see the Search Panel topic.

Example

SearchPanel_EditorCreate

<dx:ASPxGridView ID="Grid" runat="server" DataSourceID="GridDataSource" OnSearchPanelEditorCreate="Grid_SearchPanelEditorCreate">
     <Columns>
     ...
     </Columns>
     <SettingsSearchPanel Visible="true" ShowApplyButton="True" ShowClearButton="True" />
     ...
</dx:ASPxGridView>
protected void Grid_SearchPanelEditorCreate(object sender, DevExpress.Web.ASPxGridViewSearchPanelEditorCreateEventArgs e) {
     e.EditorProperties = new SpinEditProperties();
}
See Also