Versions Compared

Key

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

...

The appearance property can be either:

  • primary - a button is shown below the entry data in highlight-color

  • secondary - a button is shown below the entry data in an inverted style

  • dropdown - the action is part of the (always visible) options menu (…)

...

This type can be used to show a list of objects as a table. In conjunction with the ELO Maps maps this can represent tables with columns and a given list of lines.

Code Block
- label: 'Taxes'
  key: 'map_objekte_TAX_AMOUNT'
  type: 'table'
  options:
    allowMarkup: markdown
    columns:
      - label: Net Amount
        field: TAX_AMOUNT_POS_NET
      - label: VAT in %
        field: TAX_AMOUNT_IN_PERCENT
      - label: VAT in €
        field: TAX_AMOUNT_IN_EUR
  showInTableHeader: false
  showInDetailList: true 

Download

type: download

This type will show a download button for the linked document (next to possibly defined actions). This type is only effective if the entry is connected to a document (currently only possible for entries coming from ELO sources). For this type the configuration value key has no effect - it will therefore be ignored.

...