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,223 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2017 06:38 AM
Or you can have timer to show message for few seconds and after that redirect users to homepage as described by rini
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-20-2017 06:08 AM
Hi Chirag,
I have tried the method you suggest, however the redirect is successful but the Info Message with REQ# is not visible.
Please suggest
- 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/";
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2017 06:38 AM
Please refer the link below
Please see solution for redirection on below post.
Helsinki Service Portal - Record Producer Redirect
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-09-2017 03:17 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/";
}
