Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type Aliases

FilterFunction: ((itemLabel: string, filterValue: string) => boolean)

Type declaration

    • (itemLabel: string, filterValue: string): boolean
    • A function for filtering the options of a pick list box.

      Parameters

      • itemLabel: string
      • filterValue: string

      Returns boolean

FilterMatchMode: "startsWith" | "contains" | "endsWith" | "custom"

Available modes for filtering the options of a pick list. When custom is set, a filterFunction must be specified.

ListName: "source" | "target"

The type for the two lists comprising the pick list, i.e. whether a list contain the source or target items.

OnTransferCallback: ((transferData: TransferData) => void)

Type declaration

TransferType: "command" | "dblclick" | "dragdrop"

Indicates how an item was transferred from one list to the other.

  • command: The item was transferred as a result of the user clicking one of the command buttons next to the lists.
  • dblclick: The item was transferred as a result of a double click by the user.
  • dragdrop: The item was transferred as a result of a drag&drop interaction by the user.
  • checkbox:The item was transferred as a result of a checkbox click by the user.

Generated using TypeDoc