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

ASPxClientGridView.BatchEditChangesPreviewShowing Event

Occurs on the client side before the Changes Preview window is shown.

Declaration

BatchEditChangesPreviewShowing: ASPxClientEvent<ASPxClientCancelEventHandler<ASPxClientGridView>>

Event Data

The BatchEditChangesPreviewShowing event's data class is ASPxClientCancelEventArgs. The following properties provide information specific to this event:

Property Description
cancel Specifies whether to cancel the related action (for example, row edit, export).

Remarks

The ASPxGridView control allows you to modify a batch of grid data on the client side and send it to the server in a single request. All user changes are maintained on the client side until the Save changes button is clicked, or all changes are canceled by clicking the Cancel changes button. The Preview changes button allows switching the grid to Preview Changes mode and manage modified rows.

The BatchEditChangesPreviewShowing event occurs when an end-user has clicked the Preview changes command button. To cancel the current operation, set the event parameter’s cancel property to true.

See Also