Versions Compared

Key

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

...

Code Block
- label: 'Created on'
  key: 'createdon'
  type: 'date'
  showInTableHeader: true
  showInDetailList: true

Form

type: form

Allow opening forms directly from a given entry. The form can be opened with given data of the entry when the property forwardProperties is configured.

Code Block
- label: 'New Opportunity'
  type: 'form'
  key: 'createOpportunity'
  icon: 'briefcase'
  showInTableHeader: false
  showInDetailList: true
  options:
    forwardProperties: COMPANY_REFERENCE,COMPANY_NAME,SOURCEID

In this example, the form ‘createOpportunity’ will be shown inside the detail-view of an entry with the icon ‘briefcase’. The values COMPANY_REFERENCE, COMPANY_REFERENCE or SOURCEID are passed into the form.

Info

The list of possible icons is based on the https://feathericons.com/ library and are open source.

Action

type: action

Based on backend-data

...

The icon property defines what glyph is shown in the button. The list of possible icons is based on the https://feathericons.com/ library and are open source. You can use the official The feather icon site to lets you search for icons and use the icon name inside the property (e.g. phone).

...