Skip to main content

BootstrapCardView.CellEditorInitialize Event

Enables the cell editors displayed within the edit cells to be initialized.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public event BootstrapCardViewEditorEventHandler CellEditorInitialize

Event Data

The CellEditorInitialize event's data class is BootstrapCardViewEditorEventArgs. 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 card key value - an object that uniquely identifies the card. Inherited from ASPxCardViewEditorEventArgs.
Value Gets the editor’s value. Inherited from ASPxGridEditorEventArgs.
VisibleIndex Gets the edited card’s visible index. Inherited from ASPxCardViewEditorEventArgs.

Remarks

The CellEditorInitialize event is raised when the CardView is switched to edit mode and enables you to initialize cell editors.

The event parameter’s BootstrapCardViewEditorEventArgs.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.

Note

The CellEditorInitialize event isn’t raised for edit cells that contain custom editors defined using templates.

See Also