formcycle 8.3.6 - JavaScript for forms
    Preparing search index...

    Interface XmValidatorOnFinishData

    Data that is passed to the finish callback of the form validator, see XmValidator.on and XmValidatorCallbacks.

    interface XmValidatorOnFinishData {
        items: JQuery;
        silent: boolean;
        type: "main" | "sub";
        valid: boolean;
    }
    Index

    Properties

    Properties

    items: JQuery

    A list of all items to be validated.

    silent: boolean

    Whether the validation process is to be silent (=no change to the visible error messages).

    type: "main" | "sub"

    The type of the validation, either main or sub. Each main validation consists of multiple sub validations.

    valid: boolean

    Whether all validated elements are valid.