- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2016 01:02 AM
Dear Team,
We have a requirement that a pop up should come up when customer satisfaction survey has completed , saying " Thank You for your feedback "
Any idea how to achieve it.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2016 09:32 AM
Navigate to "UI Pages" . Search for name "assessment_thanks" . Add the alert script under the HTML section . Once the user click on submit this alert will display over the screen .
Something like as below .
<script>
alert("End of Survey");
</script>
You can use any other pop up box related script in order to display the pop up box to the user
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2016 02:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2016 02:43 AM
I understand end note will work but i need a pop up after completion.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2016 09:32 AM
Navigate to "UI Pages" . Search for name "assessment_thanks" . Add the alert script under the HTML section . Once the user click on submit this alert will display over the screen .
Something like as below .
<script>
alert("End of Survey");
</script>
You can use any other pop up box related script in order to display the pop up box to the user
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2016 02:19 AM
Yeah sumantha is correct
In client script section of UI page assessment_thanks write
alert('Your message to be displayed');