ASPxClientCardViewBatchEditStartEditingEventArgs.cardValues Property
Gets a hashtable that maintains information about editable cells.
Declaration
cardValues: any
Property Value
Type | Description |
---|---|
any | A hashtable that stores information about editable cells. |
Remarks
The cardValues structure is a hashtable that maintains information about editable 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
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 cardValues structure.
See Also