- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2022 07:50 AM
there is a requirement that I have a public registration form on employee center portal and when submitting it, page redirects to another page where I want to show case number, which was created while submitting form, how can I achieve this.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2022 06:40 AM
The easiest method would be to pass it in the url. On the destination page your widget can then parse the url for the required information.
For example:
In the initial page use somethign like: ?id=my_destination_page&sysparm_record=(insert passing information here e.g. sys_id etc)
then on the destination page access the info passed using:
var passedInfo = $sp.getParameter('sysparm_record');
Regards
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2022 06:40 AM
The easiest method would be to pass it in the url. On the destination page your widget can then parse the url for the required information.
For example:
In the initial page use somethign like: ?id=my_destination_page&sysparm_record=(insert passing information here e.g. sys_id etc)
then on the destination page access the info passed using:
var passedInfo = $sp.getParameter('sysparm_record');
Regards
Paul