Disable drill down on portal report

Fabio Cresta
ServiceNow Employee
ServiceNow Employee

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

1 ACCEPTED SOLUTION

Community Alums
Not applicable

Hi @by ,

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

View solution in original post

3 REPLIES 3

Community Alums
Not applicable

Hi @by ,

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

Thanks Sandeep!

 

Community Alums
Not applicable

Welcome