Nutrient Web SDK
    Preparing search index...

    Interface FormFieldValuesDidSaveEvent

    This event is emitted when form field values are saved.

    Get the list of saved form field values.

    instance.addEventListener("formFieldValues.didSave", () => {
    console.log("Form field values were saved");
    });
    interface FormFieldValuesDidSaveEvent {
        error: Error;
        response: Response;
    }
    Index

    Properties

    Properties

    error: Error

    The error from the backend.

    response: Response

    The response from the backend.