ASPxClientGridViewBatchEditChangesSavingEventArgs.deletedValues Property
In This Article
Gets a hashtable that maintains information about deleted cells.
#Declaration
TypeScript
deletedValues: any
#Property Value
Type | Description |
---|---|
any | A hashtable that stores information about deleted cells. |
#Remarks
The deletedValues structure is a hashtable that maintains information about deleted cells in the following manner:
deletedValues = {
"0": {
"1": {
value: "someValue",
}
}
}
//Here, "0" is an example of the row visible index; "1" is an example of the column index specifying the corresponding cell
See Also