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