Hi!
I wanted to add a pop-up through a script task and i used this:
this.showInformationDialogue("Message");
return true;
The problem is that it says that it doesn't recognize showInformationDialogue. I tried to add Terrasoft libraries, but it says that I can't use "using Terrasoft..." in a script task.
Does anybody have any idea how I can add a pop-up?
Thank you!
Like
The only way this can happen is to send a message to the UI/browser from the script task. On the page or somewhere in the UI you need to listen for that message. Then, when received, display the popup message.
I have an article here about how to send the message from the backend process/script task to the client: https://customerfx.com/article/sending-a-message-from-server-side-c-to-…
And an article about displaying popup messages from client-side code here: https://customerfx.com/article/displaying-information-confirmation-and-…
Ryan
The only way this can happen is to send a message to the UI/browser from the script task. On the page or somewhere in the UI you need to listen for that message. Then, when received, display the popup message.
I have an article here about how to send the message from the backend process/script task to the client: https://customerfx.com/article/sending-a-message-from-server-side-c-to-…
And an article about displaying popup messages from client-side code here: https://customerfx.com/article/displaying-information-confirmation-and-…
Ryan