Remove Hyperlink from Calendar Report
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2024 10:55 AM
Good Afternoon,
I am attempting to remove hyperlinks from a specific change calendar report so that when clicking on a report item it does not take users to the change record. We plan to have this report listed on our Employee Center and end users will receive an error as they do not have permissions to view the change request table. We only want this report for visibility so they can view upcoming changes for preparation of when certain services may be down.
I tried to move around attributes in the collection type dictionary entry so the number wasn't the most left item hoping by replacing it as the furthest left item with a custom field the entries on the calendar wouldn't link to change records, but this did not resolve the issue.
Any help is appreciated!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-10-2024 12:53 AM - edited ‎12-12-2024 11:24 PM
Hi,
I recently figured out the solution, and you can use the following CSS code in the instance or widget:
To completely restrict clickable access:
.report_content {
pointer-events: none;
}
To restrict only events or record clicking:
.fc-event {
pointer-events: none;
cursor: default;
}
Hope this helps!