formcycle 8.5.5-RC.2 - JavaScript for forms
    Preparing search index...

    Interface XUtilOnSubmitData

    interface XUtilOnSubmitData {
        form: HTMLFormElement;
        submissionBlocked: boolean;
        submitButton: HTMLButtonElement | undefined;
        xfAction: string | undefined;
        xfQualifier: string | undefined;
    }
    Index

    Properties

    form: HTMLFormElement

    The form that is about to be submitted.

    submissionBlocked: boolean

    true if the form should not be submitted, e.g. because the submit button requires validation and the form is invalid. false if the form will be submitted unless prevented by this or another callback.

    submitButton: HTMLButtonElement | undefined

    The button that was pressed to submit the form. undefined when the form was submitted without pressing a button, e.g. by pressing enter in a text field.

    xfAction: string | undefined

    The name of the submitButton that was pressed to submit the form, ie. its name attribute. undefined when submitButton is undefined.

    xfQualifier: string | undefined

    The name of the button list ("Button-Leiste") that contains the submitButton that was pressed to submit the form. undefined when submitButton is undefined.