Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Items that have a Next Expected Update date that has already passed, are marked in red. You can define a buffer that will be taken into account when adding the alert to a missed update. For example, if an update was done within 5 days before the expected date, then this will trigger the date to be updated to the next one. The buffer is set in the Data Collection basic settings alongside the Update frequency and Frequency start date.

Configuration

To configure the Expected DC Updates item to a dashboard:

  1. Click on the Additional Settings Button and

    Image Modified
  2. click on Edit Dashboard.

  3. In the dashboard editor click on Edit JSON to add the configuration snippets.

    Image Modified
Note

Configuration must always be enclosed in curly brackets and if there more configurations than one seperated by a comma.

Icon

Choose an icon from the Material UI data base.

Code Block
icon: 'update'

Titel

Choose a titel for the dashboard element.

Code Block
title: {
    en: 'Last Updates Multipliers'
  }

Sort

Choose the sorting order of the updates.

Code Block
sort: 'ASC'
Code Block
sort: 'DESC'

Collection

Enter the code from the data collection whose updates shall be displayed.

Code Block
collections: [
    'MUL'
  ]

Limit

Set a limit of rows to be displayed.

Code Block
limit: 10

Display Date

Choose the type of date that shall be displayed: EDIT will consider both edits to existing submissions and new submissions whereas NEW considers only new submissions as updates.

...