Tables
Tables are a good way to show data sets. Tables can have a dynamic source and change as the source changes.
Not sure how to configure a form? Learn more...
Create a table with an optional header using CSV or JSON as the data source. You can either use data reference to link to the source and make the content dynamic or enter the table content manually. If you enter the data manually, make sure it's in the following format:
[["Company", "Order", "Shop nr"], /*if header is selected, these are the header values*/
["5", "1104", "400"], /*these are the values in one row; each value gets a separate column*/
["6", "1104", "400"],
["7", "1104", "400", ""]/*if there is no value, leave the double quotes empty*/
]
When you run an instance of the workflow, the step assignee can edit and add values to the table.
See how to edit table values
- Click the value in the table.
- Update the value and hit Enter.
Add tooltip to field
You can add extra information to help users provide the right input. The information will show when users hover over the info icon next to the field name.
Complete a form using API
You can update field data and complete a form using API. To see examples of the JSON body you need for each form field, see Completing steps.
Updated about 13 hours ago