...
Code Block |
---|
- label: 'New Opportunity' type: 'form' key: 'createOpportunity' icon: 'briefcase' showInTableHeader: false showInDetailList: true options: forwardPropertiesforwardFields: ['COMPANY_REFERENCE' ,'COMPANY_NAME,SOURCEID'] |
In this example, the form 'createOpportunity' can be opened via the button 'New Opportunity' inside the detail-view of an entry. The values COMPANY_REFERENCE
, COMPANY_REFERENCE
or SOURCEID
are passed into the form. The button has the icon 'briefcase'.
...
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. The feather icon site lets you search for icons and use the icon name inside the property (e.g. phone
).
Code Block |
---|
- label: 'Send Request'
key: 'requestMailto'
type: 'action'
icon: 'phone'
showInTableHeader: false
showInDetailList: true |
Tables
type: table
This type can be used to show a list of objects as a table. In conjunction with the ELO maps this can represent tables with columns and a given list of lines.
...