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

ASPxClientTreeList.BatchEditNodeRecovering Event

Occurs on the client side before a node is recovered in batch edit mode.

Declaration

BatchEditNodeRecovering: ASPxClientEvent<ASPxClientTreeListBatchEditNodeRecoveringEventHandler<ASPxClientTreeList>>

Event Data

The BatchEditNodeRecovering event's data class is ASPxClientTreeListBatchEditNodeRecoveringEventArgs. 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.
nodeKey Gets the processed node’s key value.
nodeValues Gets a hashtable that maintains information about recovered cells.

Remarks

The ASPxTreeList 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 BatchEditNodeRecovering event occurs when an end-user has clicked the Recover command button. The event argument properties allow you to identify the processed node by its key (nodeKey), and to obtain an information about deleted data cells (nodeValues). To cancel the current operation, set the event parameter’s cancel property to true.

See Also