Skip to main content

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

true if both visible and invisible input controls have been validated; false if only visible input controls have been validated.

isValid boolean

true if the validation has been completed successfully; otherwise, false.

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