Add Links on record producer form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2016 01:59 AM
Hi all,
I need to add a few links on a record producer form so user can click and get another page open.
Record producer available from the new self-service portal helsinki patch 3
Is it any way to do this ?
Ps: keep in mind that UI page, UI macro are not handled by the self-service portal
Thanks in advance,
Lô Mouhamadou
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2016 02:04 AM
Lo,
Which kind of links do you want to add within the record producer.
For instance, if you want to redirect to home, then add :
- producer.redirect = "home.do"; or
- producer.redirect = "abc/catalog_page.do";
For other link, here is a sample of the script :
- //Create the html contents of the information message
- var link = '<a href="incident.do?sys_id=' + current.sys_id + '" class="breadcrumb" >' + current.number + '</a>';
- var message = 'Incident ' + link + ' has been created. ';
- message += 'Thank you for your submission.';
- //Add the information message
- gs.addInfoMessage(message);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2016 02:08 AM
Hi AKb Zic,
On the form if user select a specific value, I have to show him 7 links for him to visit and get docs.
But on the form itself I don't think there is a way to display hyperlink (UI page and Macro excluded)
Regs,
Lô Mouhamadou
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2016 02:20 AM
Lo,
The script I provided will a hyperlink. If user clicks on it, it will redirect him to the new page.
Here is also an article I just found which explain how to set a link (hyperlink) up : Adding a Redirect and Info Message to a Record Producer - ServiceNow Guru
Let me know if that works out
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2016 02:23 AM