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

ASPxClientGridView.BatchEditRowRecovering Event

Occurs on the client side before a row is recovered in batch edit mode.

Declaration

BatchEditRowRecovering: ASPxClientEvent<ASPxClientGridViewBatchEditRowRecoveringEventHandler<ASPxClientGridView>>

Event Data

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

Property Description
cancel Specifies whether to cancel the related action (for example, row edit, export). Inherited from ASPxClientCancelEventArgs.
key Gets the row’s key.
rowValues Gets a hashtable that maintains information about recovered cells.
visibleIndex Gets the processed row’s visible index.

Remarks

The ASPxGridView control allows you to modify a batch of its data on the client side and send it to the server in a single request.

The BatchEditRowRecovering event occurs when an end-user has clicked the Recover command button. The event argument properties allow you to identify the processed row by its visible index (visibleIndex), and to obtain an information about deleted cells (rowValues). To cancel the current operation, set the event parameter’s cancel property to true.

See Also