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