ASPxClientTreeListBatchEditStartEditingEventArgs.nodeValues Property
Gets the value of the processed cell.
Declaration
nodeValues: any
Property Value
Type | Description |
---|---|
any | A hashtable that stores information about editable cells. |
Remarks
The nodeValues
structure is a hashtable that maintains information about editable cells in the following manner:
nodeValues = {
"0": {
value: "someValue",
text: "someDisplayText"
}
}
//Here, "0" is an example of the column index specifying the corresponding node cell.
See Also