On Portal, after submitting a request, want to redirect to a page and then show the Info message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2017 04:37 AM
- 16,959 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2017 04:52 AM
Hi,
You can write an onsubmit catalog client script for that Record producer/catalog item.
var URL = "?id=submission_thanks"; //Redirect part of widget sc item custom
top.window.location = URL;
Thanks,
Vinitha.K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2017 05:04 AM
It is in general for all the catalog items, but i want to make this for sc_home portal page, after clicking 'Submit Button'.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-15-2017 06:38 AM
You can write an onsubmit catalog client script for that Record producer/catalog item.
var URL = "?id=submission_thanks"; //Redirect part of widget sc item custom
top.window.location = URL;
don't use this solution as it will cause intermittently not submission of Record Producer on Service Portal when many customers are requesting.
Thanks,
Shivam

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-09-2017 03:24 AM
check this out ,it is working for the redirect to delay info message and it is redirect to homepage
if (g_form)
g_form.submit();
setTimeout(redirectpage, 5000);
}
function redirectpage()
{
document.location = "/sp/";
}