Nutrient Web SDK
    Preparing search index...

    Interface ChoiceFormFieldJSON

    interface ChoiceFormFieldJSON {
        additionalActions?: {
            [key: string]: undefined | { type: string; [key: string]: unknown };
        };
        annotationIds: string[];
        commitOnChange: boolean;
        defaultValues: string[];
        flags?: ("readOnly" | "required" | "noExport")[];
        group?: IGroup;
        id: string;
        label: string;
        multiSelect: boolean;
        name: string;
        options: FormOptionJSON[];
        pdfObjectId?: null | number;
        permissions?: {
            delete: boolean;
            edit: boolean;
            fill?: boolean;
            reply?: boolean;
            setGroup: boolean;
        };
        type: "pspdfkit/form-field/listbox"
        | "pspdfkit/form-field/combobox";
        v: 1;
    }

    Hierarchy

    Index

    Properties

    additionalActions?: {
        [key: string]: undefined | { type: string; [key: string]: unknown };
    }
    annotationIds: string[]
    commitOnChange: boolean
    defaultValues: string[]
    flags?: ("readOnly" | "required" | "noExport")[]
    group?: IGroup
    id: string
    label: string
    multiSelect: boolean
    name: string
    options: FormOptionJSON[]
    pdfObjectId?: null | number
    permissions?: {
        delete: boolean;
        edit: boolean;
        fill?: boolean;
        reply?: boolean;
        setGroup: boolean;
    }
    type: "pspdfkit/form-field/listbox" | "pspdfkit/form-field/combobox"
    v: 1