
Options
- 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.
Labels:
1 ACCEPTED SOLUTION
Options
- 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!
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2019 02:38 AM
Glad it helped!