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

ASPxClientCardView.BatchEditCardDeleting Event

Occurs on the client side before a card is deleted in batch edit mode.

Declaration

BatchEditCardDeleting: ASPxClientEvent<ASPxClientCardViewBatchEditCardDeletingEventHandler<ASPxClientCardView>>

Event Data

The BatchEditCardDeleting event's data class is ASPxClientCardViewBatchEditCardDeletingEventArgs. 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 deleted cells.
visibleIndex Gets the processed card visible index.

Remarks

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

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

See Also