Workflow Node element
The Node element is only used in combination with:
It specifies a document node to be made available for download.
| Attribute | Description | Required |
|---|---|---|
| label |
The text shown as a label in the user interface. |
true |
| path |
Node path. Usually a document path. |
false |
| uuid | Node UUID. Usually a valid document UUID. | false |
|
Parent: |
||
Basic download example
- Download button with a static node element.
- The uuid must be a valid document UUID.
<workflow-form task="download test">
<download name="download" label="Download document">
<node label="download" uuid="afb8ac33-912d-4515-e29b-1c01b693809a" />
</download>
</workflow-form>
In most cases, the UUID is assigned dynamically at runtime using the data attribute on the Download field:
<download name="download" label="Download document" data="dynamic" />