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

ASPxClientGridViewBatchEditStartEditingEventArgs.rowValues Property

Gets a hashtable that maintains information about editable cells.

Declaration

rowValues: any

Property Value

Type Description
any

A hashtable that stores information about editable cells.

Remarks

The rowValues structure is a hashtable that maintains information about editable cells in the following manner:

rowValues = {
   "0": {
      value: "someValue",
      text: "someDisplayText"
   }
}
//Here, "0" is an example of the column index specifying the corresponding row cell

You can manipulate entries of this hashtable to initialize/modify editor values or prevent displaying editors for particular cells by removing the corresponding entries from the rowValues structure.

See Also