Skip to content

Column Configuration

With column configuration you get a view in Insight Web to let the user edit column settings for different components. This includes ordering columns and changing their visibility. These settings are cached locally for every user. Column Configuration is supported in Insight Tables and Insight Gantt.

Usage

To use column configuration for a Gantt chart, use the following notation:

{
  "label": "Teamplanung",
  "action": "planning",
  "icon": "icon-new-tab",
  "actionValues": [
    {
      "gantt": {
          "tree": "team-workorder-planning",
          "columnConfiguration": true
      }
    }
  ]
}

To use column configuration for a Table, use the following notation:

{
  "list": {
    "settings": {
        "columnConfiguration": true
    }
  }
}

Instead of only using columnConfiguration generally, you can set the initial visibility for certain columns as well:

{
  "label": "Teamplanung",
  "action": "planning",
  "icon": "icon-new-tab",
  "actionValues": [
    {
      "gantt": {
          "tree": "team-workorder-planning",
          "columnConfiguration": {
            "columnA": true,
            "columnB": false
          }
      }
    }
  ]
}