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