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

BootstrapGridView.AutoFilterCellEditorCreate Event

Enables you to assign editors to individual filter row cells.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.2.dll

Declaration

public event BootstrapGridViewEditorCreateEventHandler AutoFilterCellEditorCreate

Event Data

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

Property Description
Column
EditorProperties Gets or sets the filter cell’s editor. Inherited from ASPxGridEditorCreateEventArgs.
KeyValue Gets the row key value - an object that uniquely identifies the row. Inherited from ASPxGridViewEditorCreateEventArgs.
Value Gets or sets the filter cell’s value. Inherited from ASPxGridEditorCreateEventArgs.
VisibleIndex Gets the row’s visible index. Inherited from ASPxGridViewEditorCreateEventArgs.

Remarks

The AutoFilterCellEditorCreate event is raised for each cell within the filter row, and enables you to replace their default editors with custom ones.

The column to which the processed cell corresponds is returned by the BootstrapGridViewEditorCreateEventArgs.Column property.

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

See Also