Skip to main content

ASPxClientTreeListBatchEditChangesCancelingEventArgs.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",
    }
  }
}
See Also