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
- 17,224 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-23-2018 11:27 AM
I have the same question. Is there a solution for it?
Thank you,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-26-2018 12:39 AM
No I'm afraid
I settled for the delay mentioned above
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-26-2018 06:43 AM
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-26-2018 02:01 PM
update the issueMessage function with custom message and write a Widget on the custom page with your desired message
function issueMessage(n, table, sys_id) {
//var page = table == 'sc_request' ? 'sc_request' : 'ticket';
var page = 'thank_you'; //Custom Page
if (c.options.page) {page = c.options.page;}
if (c.options.table) {table = c.options.table;}
var url = spUtil.format(c.options.url, {page: page, table: table, sys_id: sys_id});
if (c.options.auto_redirect == "true") {
//$window.location.href = url;
$window.location.href = url;
return;
}
}
