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

    Type Alias LegacyFormSaveData

    LegacyFormSaveData: Partial<
        Record<
            string,
            | LegacyFormSaveDataBase[keyof LegacyFormSaveDataBase]
            | LegacyFormField
            | string[],
        >,
    >

    Legacy model that represents the data entered into a form, including values from repeated form fields as well as images.

    The key can be any of the following:

    • The name of a repeated form field with the prefix _dyn_size, e.g. tf1_dyn_size. Then the value is an array with the repetition IDs, e.g. ["0", "1", "2"].
    • The ID of the form field, e.g. xi-tf-1. The value is an object with the metadata and values for each form field.
    • One of the properties from LegacyFormSaveDataBase.

    Legacy, will be replaced with a better model.