ASPxClientGridViewBatchEditChangesSavingEventArgs.insertedValues Property
In This Article
Gets a hashtable that maintains information about inserted cells.
#Declaration
TypeScript
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 row visible index; "1" is an example of the column index specifying the corresponding cell
See Also