ASPxClientVerticalGrid.BatchEditRecordRecovering Event
Occurs on the client side before a record is deleted in batch edit mode.
Declaration
BatchEditRecordRecovering: ASPxClientEvent<ASPxClientVerticalGridBatchEditRecordRecoveringEventHandler<ASPxClientVerticalGrid>>
Event Data
The BatchEditRecordRecovering event's data class is ASPxClientVerticalGridBatchEditRecordRecoveringEventArgs. 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. |
recordValues | Gets a hashtable that maintains information about recovered cells. |
visibleIndex | Gets the processed record’s visible index. |
Remarks
The ASPxVerticalGrid 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 BatchEditRecordRecovering event occurs when an end-user has clicked the Recover command button. The event argument properties allow you to identify the processed record by its visible index (visibleIndex), and to obtain an information about deleted cells (recordValues). To cancel the current operation, set the event parameter’s cancel property to true
.