Forum Discussion

Kins's avatar
Kins
Cloud Apps
09-05-2022
Solved

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,d...
  • harikm007's avatar
    09-05-2022

    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