@servicenow/sdk - v4.9.0
    Preparing search index...
    • A Column for a list type field.

      Type Parameters

      Parameters

      • config: C & Column<Type, Default> & {
            choices?: TChoices;
            dropdown?:
                | "none"
                | "suggestion"
                | "dropdown_with_none"
                | "dropdown_without_none"
                | Dropdown;
            dynamicRefQual?: string
            | Record<"sys_filter_option_dynamic">;
            referenceQual?: string;
            referenceTable?: RefTable;
            useReferenceQualifier?: "simple" | "dynamic" | "advanced";
        }
        • Optionalchoices?: TChoices

          Choice values definitions as object literal: { choice_1: { label: 'Choice1' }, choice_2: { label: 'Choice2' } }

        • Optionaldropdown?:
              | "none"
              | "suggestion"
              | "dropdown_with_none"
              | "dropdown_without_none"
              | Dropdown

          How a list of choices displays for users of your form

        • OptionaldynamicRefQual?: string | Record<"sys_filter_option_dynamic">

          Dynamic reference qualifier (use with useReferenceQualifier='dynamic'). Mutually exclusive with referenceQual.

        • OptionalreferenceQual?: string

          Filter condition for the reference picker. Can be an encoded query (e.g. 'active=true') or a javascript: expression. Mutually exclusive with dynamicRefQual.

        • OptionalreferenceTable?: RefTable

          Table containing possible values for this list (for reference-based lists)

        • OptionaluseReferenceQualifier?: "simple" | "dynamic" | "advanced"

          Controls the reference qualifier mode. Use 'simple' with referenceQual for an encoded query, 'advanced' for a javascript: scripted qualifier, or 'dynamic' with dynamicRefQual.

      Returns Typed<Type, C>