ASPxClientCardViewBatchEditChangesCancelingEventArgs.updatedValues Property
Gets a hashtable that maintains information about updated cells.
Declaration
updatedValues: any
Property Value
Type | Description |
---|---|
any | A hashtable that stores information about updated cells. |
Remarks
The updatedValues structure is a hashtable that maintains information about updated cells in the following manner:
updatedValues = {
"0": {
"1": {
value: "someValue",
}
}
}
//Here, "0" is an example of the card visible index; "1" is an example of the column index specifying the corresponding cell
See Also