Remove drill down list view from report on dashboard

Andrew_TND
Mega Sage
Mega Sage

Hello experts,

We have a report on our service portal which points to a table which is admin only. When our customer clicks into the graph it says they dont have the relevant access etc.

Is there a way to remove this drill down view and make the graph read only?


find_real_file.png

10 REPLIES 10

Swapnil Soni1
Giga Guru

Hey Andrew,

One way to do this is to define pointer-events in the Theme.

.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.

 

Please mark correct and helpful if this helps.

Thanks

Swapnil

Hello Good morning.

May i please know exactly where will this go code go?

Hey Good Morning,

This is used in the report widget. Inside report widget in the CSS section.

Swapnil Soni1
Giga Guru

Hi andrew thanks for the helpful. I wanted to say that if this helps you and your issue is solves then please mark correct and close the thread so other can use it.

Wildbeach
Tera Contributor

If the above solution does not do the trick for you (I did not have the remove button on my drilldown report), all the drilldown type reports are stored in the sys_report_drill table. You can also add a related list to show which report this drilldown belongs to.

/Per