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

ASPxClientCardView.BatchEditCardInserting Event

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

Declaration

BatchEditCardInserting: ASPxClientEvent<ASPxClientCardViewBatchEditCardInsertingEventHandler<ASPxClientCardView>>

Event Data

The BatchEditCardInserting event's data class is ASPxClientCardViewBatchEditCardInsertingEventArgs. 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.
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 BatchEditCardInserting event occurs when an end-user has clicked the New command button. The event argument properties allow you to obtain the processed card by its visible index (visibleIndex). To cancel the current operation, set the event parameter’s cancel property to true.

See Also