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

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 Gets or sets a value indicating whether the action which raised the event should be canceled. 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.

See Also