constructor(container, validationGroup, invisibleControlsValidated, isValid, firstInvalidControl, firstVisibleInvalidControl) Constructor
Initializes a new instance of the ASPxClientValidationCompletedEventArgs class.
Declaration
constructor(
container: any,
validationGroup: string,
invisibleControlsValidated: boolean,
isValid: boolean,
firstInvalidControl: ASPxClientControl,
firstVisibleInvalidControl: ASPxClientControl
)
Parameters
Name | Type | Description |
---|---|---|
container | any | An object representing the container of controls that have been validated. |
validationGroup | string | A string value that specifies the name of the group of controls that has been validated. |
invisibleControlsValidated | boolean |
|
isValid | boolean |
|
firstInvalidControl | ASPxClientControl | An object representing the first input control that has an invalid value. |
firstVisibleInvalidControl | ASPxClientControl | An object representing the first visible input control that has an invalid value. |
See Also