Skip to main content

ASPxClientCardViewBatchEditCardDeletingEventArgs.cardValues Property

Gets a hashtable that maintains information about deleted cells.

Declaration

cardValues: any

Property Value

Type Description
any

A hashtable that stores information about deleted cells.

Remarks

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

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