Kins
09-05-2022Cloud Apps
Pane removal but cannot PDF
I am using the below script for my drills, to remove the right and left side panels:
prism.jumpToDashboard(widget, { displayDashboardsPane:false, displayToolbarRow :false, displayHeaderRow :false,displayFilterPane:false});
By using this, it's also removed the top panel which allows users to download the dashboard to PDF etc. Does anyone know a way around this?
Many thanks
Hi Kins ,
In above script displayToolbarRow and displayHeaderRow are for header. So you need to set them as true.
Use below script :
prism.jumpToDashboard(widget, { displayDashboardsPane:false, displayToolbarRow :true, displayHeaderRow :true,displayFilterPane:false});-Hari