-
Notifications
You must be signed in to change notification settings - Fork 2
Actions ShowQuestion
thica edited this page Jan 10, 2020
·
6 revisions
This action open a separate page where the user can answer a question. Can be used to show a popup message as well
Attribute | Description |
---|---|
string | showquestion |
title | Title of the question-popup |
message | Message for the question bar popup (normally the question) |
actionyes | Name of the action to called, if the user presses the Yes button |
actionno | Name of the action to called, if the user presses the No button |
dontstopqueue | Doesn't stop the queue (if set to any value). As standard, the queue will be stopped until the answer to the question has been given. |
close | Closes the question popup. Use it only, when you used the dontstopqueue flag |
A short example:
<action name="My Qustion" string="showquestion" title="Mytitle" message="MyMessage" actionyes="myYesAction" actionno="myNoAction"/>