
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2019 02:25 AM
Hello,
Is there a possibility to add a url clickable link in the system ui -> messages and use that to show on the service portal in a widget.
Thanks,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2019 03:33 AM
Sample HTML Template
<div>
<a ng-href={{data.link}}>Here</a>
</div>
Sample Server Script
(function() {
data.link = gs.getMessage('incident_portal');
})
Sample Message
Hope this helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2019 02:38 AM
You can add the url text in the system ui -> messages and later call in the Server Script of the Widget with - gs.getMessage('messageKey')
You might have to add the clickable link in HTML section of the Widget.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2019 03:20 AM
Thank you rad for your response, can you provide some details on how to add a link in html section of the widget.do we need to add it in html template?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2019 03:33 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2019 02:32 AM
Thank you Rad for your response i was able to add a link.