@servicenow/sdk - v4.7.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;
            referenceTable?: RefTable;
        }
        • 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

        • OptionalreferenceTable?: RefTable

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

      Returns Typed<Type, C>