Skip to main content
A newer version of this page is available. .

ASPxClientVerticalGridBatchEditRecordDeletingEventArgs.recordValues Property

Gets a hashtable that maintains information about deleted cells.

Declaration

recordValues: any

Property Value

Type Description
any

A hashtable that stores information about deleted cells.

Remarks

The recordValues structure is a hashtable that maintains information about deleted cells in the following manner:


recordValues = {
   "0": {
      value: "someValue",
      text: "someDisplayText"
   }
}
//Here, "0" is an example of the row index specifying the corresponding record cell
See Also