Skip to content

Input Dialog

Type: input-dialog  ·  Package: UI Activities v1.0.0  ·  Output: string

Displays a dialog with a text field and returns the value entered by the user. It is used to request data at the beginning or in the middle of an assisted automation: a document number, a date, a route.

Displays the text prompt over an input field (with an optional initial value, default) and waits. Returns what the user typed.

ParameterEditorDescription
promptexpressionLabel text on the field.
ParameterEditorDescription
titletextWindow title. By default "Zoan Automation".
defaultexpressionInitial value prefilled into the field. By default, empty.

Returns a string with the text the user entered.

Input Dialog prompt = "Ingrese el NIT del cliente:" → output: nit
DB Query sql = "SELECT * FROM Clientes WHERE Nit = @n" params = { "n": = nit } → output: cliente
  • Message Box — display a message or ask for confirmation.