Workflow Node element

This option element is only used in combination with:

The option value represents a list of distinct values in a selected field.

AttributeDescriptionRequired
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 node element.
  • uuid is 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>

Take it as an example. Normally you want to assign a UUID dynamically, as it is used as a data attribute.

<download name="download" label="Download document" data="dynamic" />

Table of contents [ Hide Show ]