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

    Interface FieldReferencesDescriptor

    The configuration that describes which elements reference other form elements. For example, an element might be visible or hidden depending on the value of another element.

    interface FieldReferencesDescriptor {
        equal: Record<string, string[]>;
        formula: FormulaHoldingFields;
        groups: Record<string, string[]>;
        hidden: Record<string, string[]>;
        readonly: Record<string, string[]>;
        required: Record<string, string[]>;
        trigger: Record<string, string[]>;
    }
    Index

    Properties

    equal: Record<string, string[]>

    The key is the ID of a form element X. The value is an array of the IDs of all form elements that must be equal to X.

    The configuration with the form fields for which a condition with a formula was defined.

    groups: Record<string, string[]>

    The key is the ID of a form element X. The value is an array of the IDs of all form elements that are in the same required group as X.

    hidden: Record<string, string[]>

    The key is the ID of a form element X. The value is an array of the IDs of all form elements that are hidden or visible depending on the value of X.

    readonly: Record<string, string[]>

    The key is the ID of a form element X. The value is an array of the IDs of all form elements that are disabled or enabled depending on the value of X.

    required: Record<string, string[]>

    The key is the ID of a form element X. The value is an array of the IDs of all form elements that are required or optional depending on the value of X.

    trigger: Record<string, string[]>

    The key is the ID of a form element X. The value is an array of the IDs of all form elements that are repeated and have X set as their repetition trigger.