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

    Interface LegacyFormFieldMeta

    Legacy model with static properties for a form field. See also LegacyFormField.

    Legacy, will be replaced with a better model.

    interface LegacyFormFieldMeta {
        dynamic: boolean;
        dyncont?: string;
        name: string;
        repetitionIds?: number[];
        size: number;
    }
    Index

    Properties

    dynamic: boolean

    Whether the form element is repeated.

    dyncont?: string

    Available only if the element is repeated. Name of the container which is repeated, may be form element itself, e.g. fs1.

    name: string

    Name of the form element, e.g. tf1.

    repetitionIds?: number[]

    Available only if the element is repeated. List of repetition IDs, may not start at 0 and may not be consecutive, e.g. [2, 5].

    size: number

    Number of repetitions, or 1 if this field is not repeated