ASPxClientTreeList.BatchEditConfirmShowing Event
In This Article
Enables you to prevent a batch edit confirmation message from being displayed.
#Declaration
TypeScript
BatchEditConfirmShowing: ASPxClientEvent<ASPxClientTreeListBatchEditConfirmShowingEventHandler<ASPxClientTreeList>>
#Event Data
The BatchEditConfirmShowing event's data class is ASPxClientTreeListBatchEditConfirmShowingEventArgs. 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 ASPx |
request |
Gets the client identifier of an object that initiates a send request. |
#Remarks
In the batch edit mode, the tree list displays a confirmation dialog when a tree list page contains modified values and an end-user tries to send a request, for instance, to sort tree list data. The BatchEditConfirmShowing event occurs before displaying this confirmation dialog and allows you to cancel its display, if required.
See Also