The CreatorCon Call for Content is officially open! Get started here.

Remove Hyperlink from Calendar Report

tiguin2798
Tera Guru

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!

tiguin2798_0-1716918909774.png

tiguin2798_1-1716918920308.png

 

1 REPLY 1

Pavithra0812
Tera Expert

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!