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