- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2014 01:17 PM
Is there a way to have a pop-up message appear after a record producer has been submitted.
I am currently using the 'gs.include("FormInfoHeader");' to show a message at the top of the redirect page, but feel this could easily be overlooked.
Ideally I would like a pop-pop message informing the user that their request has been submitted.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2014 01:19 PM
Thanks justin.drysdale and Brad Tilton (Cloud Sherpas).
Successfully created the ui page and pop-up works.
Just for reference here is what i put in the UI Page:
HTML
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<script>alert("Your request has been submitted. \n\nThe Service Desk will contact you if they need any further information.");</script>
</j:jelly>
Client script:
location.href = "home.do"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2014 02:32 PM
You could redirect to a UI page with the popup code. Then the UI page could redirect to where you want.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2014 02:48 PM
I agree with Justin that redirecting to a ui page is probably the most common way to achieve this. The issue is that you don't really have any client side capabilities from the record producer after it's submitted, but you can control where it redirects to. Because of that you could redirect to something like my_ui_page.do?sysparm_popup_message=Here is my message!
Then in your UI Page you could have the following code:
alert('${RP.getParameterValue('sysparm_popup_message')}');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2014 01:19 PM
Thanks justin.drysdale and Brad Tilton (Cloud Sherpas).
Successfully created the ui page and pop-up works.
Just for reference here is what i put in the UI Page:
HTML
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<script>alert("Your request has been submitted. \n\nThe Service Desk will contact you if they need any further information.");</script>
</j:jelly>
Client script:
location.href = "home.do"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-10-2015 11:03 PM
I need the ticket number in the pop up?? help me ragarding this...