Nodes can be enriched with actions to generate a pop-up message or to send out an email:
An alert (pop up notification)
<actions> <action type="Alert" trigger="Next" fireOnce="true" text="Are you sure?" /> </actions> |
- Explanation of the command in alerts :
- FireOnce=true: A user can visit this node multiple time, but the action is executed once
- Trigger=Load: The action is performed when loading the node
- Trigger=Next: The action is performed when stepping to the next node.
An email is sent out
<actions> <action type="Mail" trigger="Load" fireOnce="true" text="The user completes the form!" email="john@yourcompany.com" /> </actions> |