Skip to main content

ASPxClientVerticalGridBatchEditRecordValidatingEventArgs.validationInfo Property

Provides validation information on the record currently being validated.

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 record validation information in the following manner:

validationInfo = {
   "0": {
      value: "someValue",
      isValid: "true",
      errorText: "someErrorText"
   }
}
//Here, "0" is an example of the row index specifying the corresponding record cell

You can manipulate entries inthis hashtable to specify whether a cell value is valid, and provide an error text.

See Also