How to make the column as clickable link in the SP page widget
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2024 10:59 AM
I have a URL column that is readable on the service portal widget, I need to make the URL column clickable. what steps must I follow to make it clickable and open in a new tab?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2024 11:19 AM
Hi @DJ SNOW,
we can do this by using anchor tag everything in anchor tag will be a url
example
<div>
<a href="{{URL_COLUMN_VALUE}}" target="_blank">{{URL_COLUMN_VALUE}}</a>
</div>
Replace URL_COLUMN_VALUE with your column name.
Please hit helpful and accept this as a solution if it solved your problem.
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2024 09:11 PM
The URL(column value) changes for each record on the widget
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2024 10:24 PM