Skip to main content

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.

Confirm Dialog 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.

Display NameString
This is the display name of the action.

By customizing this property, you can differentiate between same type of actions.

Action IDString
Indicates the unique ID of this action.

This property is Read only and it is not customizable

DisabledBoolean
If set to true, this action is considered disabled and will not be executed.
TitleString with Expressions
The title of the dialog window.

See more about Talos Scripting language & Expressions

tip

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}?
Content TextString with Expressions
The text of the dialog window.

See more about Talos Scripting language & Expressions

tip

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?
SeverityEnum
Severity of the dialog window.

Available options:

  • Info — Informational message
  • Caution — Warning message
  • Danger — Critical/error message
  • Question — Question prompt
ButtonsEnum
Button combos of the dialog window.

Available options:

  • Yes/No
  • Yes/No/Cancel
  • OK
  • OK/Cancel
  • Custom
Dialog Result VariableVariable
Variable to hold the result of the dialog.