ASPxClientTreeListBatchEditNodeValidatingEventArgs.validationInfo Property
Provides validation information of a validated node.
Declaration
validationInfo: any
Property Value
Type | Description |
---|---|
any | An object that is a hashtable containing validation information. |
Remarks
The validationInfo property returns a hashtable that maintains node validation information in the following manner:
validationInfo = {
"0": {
value: "someValue",
isValid: "true",
errorText: "someErrorText"
}
}
//Here, "0" is an example of the column index specifying the corresponding node cell
You can manipulate entries of this hashtable to specify whether a cell value is valid, and provide an error text.
See Also