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

ASPxClientTreeList.BatchEditNodeInserting Event

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

Declaration

BatchEditNodeInserting: ASPxClientEvent<ASPxClientTreeListBatchEditNodeInsertingEventHandler<ASPxClientTreeList>>

Event Data

The BatchEditNodeInserting event's data class is ASPxClientTreeListBatchEditNodeInsertingEventArgs. 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.
nodeKey Gets the processed node’s key value.
parentNodeKey Gets the parent node key.

Remarks

The ASPxTreeList control allows you to modify a batch of tree list data on the client side and send it to the server in a single request.

The BatchEditNodeInserting event occurs when an end-user has clicked the New command button. The event argument properties allow you to obtain the processed node by its key (nodeKey). To cancel the current operation, set the event parameter’s cancel property to true.

See Also