BootstrapGridView.AutoFilterCellEditorInitialize Event
Enables the cell editors displayed within the auto filter row cells to be initialized.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v24.1.dll
NuGet Package: DevExpress.Web.Bootstrap
Declaration
Event Data
The AutoFilterCellEditorInitialize event's data class is BootstrapGridViewEditorEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Column | Gets the data column whose cell editor is being initialized. |
Editor | Gets the editor currently being processed. Inherited from ASPxGridEditorEventArgs. |
KeyValue | Gets the row key value - an object that uniquely identifies the row. Inherited from ASPxGridViewEditorEventArgs. |
Value | Gets the editor’s value. Inherited from ASPxGridEditorEventArgs. |
VisibleIndex | Gets the edited row’s visible index. Inherited from ASPxGridViewEditorEventArgs. |
Remarks
The AutoFilterCellEditorInitialize event is raised before the Filter Row is displayed within the Grid View control, and enables you to initialize its cell editors.
The event parameter’s BootstrapGridViewEditorEventArgs.Column property identifies the column whose cell editor is being initialized. The processed editor is returned by the ASPxGridEditorEventArgs.Editor property. Its value is returned by the ASPxGridEditorEventArgs.Value property.