ASPxClientVerticalGridBatchEditStartEditingEventArgs.recordValues Property
Gets a hashtable that maintains information about editable cells.
Declaration
recordValues: any
Property Value
Type | Description |
---|---|
any | A hashtable that stores information about editable cells. |
Remarks
The recordValues 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 row index specifying the corresponding record cell
You can manipulate entries in this hashtable to initialize/modify editor values or prevent displaying editors for particular cells by removing the corresponding entries from the recordValues structure.
See Also