Confirm Dialog Action
Confirm Dialog Action creates a pop-up confirmation window for the user to respond to during workflow execution. It displays a customizable dialog with a title, content text, severity level, and configurable button combinations. The user's response is stored in a variable for use in subsequent workflow logic.
Appearance
In Talos, Confirm Dialog Action appears as a standard rectangular node with a squared checkmark icon.

Properties
As all Actions, Confirm Dialog Action has a few unique properties that are essential for its functionality.
Common properties
Common properties inherited from Action.
By customizing this property, you can differentiate between same type of actions.
This property is Read only and it is not customizable
See more about Talos Scripting language & Expressions
This property supports expressions. You can use variable references and string expressions to dynamically resolve the title at runtime.
Examples
Assuming a declared String variable with name appName.
Confirmation
${appName} - Warning
Are you sure you want to delete ${appName}?
See more about Talos Scripting language & Expressions
This property supports expressions. You can use variable references and string expressions to dynamically resolve the content text at runtime.
Examples
Assuming a declared String variable with name fileName and an Integer variable count.
Do you want to continue?
You are about to delete ${fileName}. This action cannot be undone.
${count} items will be processed. Proceed?
Available options:
- Info — Informational message
- Caution — Warning message
- Danger — Critical/error message
- Question — Question prompt
Available options:
- Yes/No
- Yes/No/Cancel
- OK
- OK/Cancel
- Custom