v7.3.0

ColumnCombo
Widget

A combo populated with the columns of a TaskBoard.

If a column has a color defined, that color will be displayed in the combo and its picker.

If your app uses a "catch-all" column (a column with its id set to *), it can be excluded from the combo by setting the excludeCatchAll config to true. By using the includeAllColumnValues, you can make the combo include all column values from the tasks, even those that are not defined in the TaskBoard.

Used in TaskEditor to pick which column a task belongs to ("Status" below):

No results

Configs

Configs are options you supply in a configuration object when creating an instance of this class
  • By default, the combo will show a configured "catch-all" column (a column with its id set to *). In some cases, e.g. when used in a task editor, you may want to exclude that column from the combo.

    Has a corresponding runtime excludeCatchAll property.

  • Only applies when using a "catch-all" column (a column with its id set to *). By default, the combo will include only the columns defined in the TaskBoard. With this config you can opt to include all column values from the tasks, even those that are not defined in the TaskBoard.

    Has a corresponding runtime includeAllColumnValues property.

Properties

Properties are getters/setters or publicly accessible variables on this class
  • By default, the combo will show a configured "catch-all" column (a column with its id set to *). In some cases, e.g. when used in a task editor, you may want to exclude that column from the combo.

    Has a corresponding excludeCatchAll config.

  • Only applies when using a "catch-all" column (a column with its id set to *). By default, the combo will include only the columns defined in the TaskBoard. With this config you can opt to include all column values from the tasks, even those that are not defined in the TaskBoard.

    Has a corresponding includeAllColumnValues config.

  • store : Store
    READONLY

    The store used by the combo to populate its items, automatically chained of the TaskBoard columns store.

  • isColumnCombo : Booleantrue
    READONLY
    ADVANCED
    Identifies an object as an instance of ColumnCombo class, or subclass thereof.
type: columncombo

Source path

TaskBoard/widget/ColumnCombo.js

Contents