
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2022 06:13 AM
Hi All.
Publsihed some reports in the Service Portal.
I need to disable the standard drill down funtionality to let the user just see the report but not access the underline data.
Is it possible?
Thanks
Fabio
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2022 06:22 AM
Hi
Just define pointer-events in the Theme. This is used in the report widget. Inside report widget in the CSS section.
.report_content {
pointer-events: none;
}
This will disable the click event on the reports and prevent the drill down.
Other ways are doing the same thing on the report page or in each widget instance.
Mark my answer correct & Helpful, if Applicable.
Thanks,
Sandeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2022 06:22 AM
Hi
Just define pointer-events in the Theme. This is used in the report widget. Inside report widget in the CSS section.
.report_content {
pointer-events: none;
}
This will disable the click event on the reports and prevent the drill down.
Other ways are doing the same thing on the report page or in each widget instance.
Mark my answer correct & Helpful, if Applicable.
Thanks,
Sandeep

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2022 06:48 AM
Thanks Sandeep!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2022 06:58 AM
Welcome