Transitions

Transitions are the pathways that connect various workflow activities. Nodes are connected with transition lines to form a workflow.

Each transition has a JavaScript component (condition) used to determine which transition or path to follow. The JavaScript condition must evaluate to true or false. If the condition is true, then the transition is followed, depending on the split criteria.

When two or more of transition lines connect to the same node, the join type of the node is evaluated. The join type can either be an And clause, indicating that all transitions must be active to trigger the node. The join type can be an Or clause, in which case, any one of the transitions that are active trigger the node. The join type is indicated by a symbol on the left of the node. The symbol is a triangle for the Or clause and a circle for the And clause.

The only required property for a transition line is the Condition.

Parent topic: Workflow elements