Skip to main content

ASPxClientTreeListBatchEditNodeRecoveringEventArgs.nodeValues Property

Gets a hashtable that maintains information about recovered cells.

Declaration

nodeValues: any

Property Value

Type Description
any

A hashtable that stores information about recovered cells.

Remarks

The nodeValues structure is a hashtable that maintains information about recovered cells in the following manner:

nodeValues = {
   "0": {
      value: "someValue",
      text: "someDisplayText"
   }
}
//Here, "0" is an example of the column index specifying the corresponding data cell
See Also