blessed-components - v1.20.0
    Preparing search index...

    Interface FormHandle

    Imperative handle returned by form.

    interface FormHandle {
        errors(): FormErrors;
        focusNext(): void;
        focusPrevious(): void;
        registerField(field: FormFieldBinding): void;
        reset(): FormValues;
        submit(): FormSubmitResult;
        unregisterField(id: string): void;
        validate(): FormErrors;
        values(): FormValues;
        element: FormElement;
        destroy(): void;
        setData(data: FormData): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    element: FormElement

    Underlying Blessed element available for standard element operations.

    Methods