Forums
How to open dashboard within a dashboard or business story? - Printable Version

+- Forums (https://bdn.bdb.ai)
+-- Forum: BDB Knowledge Base (https://bdn.bdb.ai/forumdisplay.php?fid=13)
+--- Forum: BDB Dashboards Designer (https://bdn.bdb.ai/forumdisplay.php?fid=43)
+---- Forum: BDB Designer Q & A (https://bdn.bdb.ai/forumdisplay.php?fid=16)
+---- Thread: How to open dashboard within a dashboard or business story? (/showthread.php?tid=560)



How to open dashboard within a dashboard or business story? - sariga.vr@bdb.ai - 12-23-2022

window.open('')  


This is the function used to open dashboard or story within dashboard. Within inverted comas we have to provide open doc link of which we want to open it.


RE: How to open dashboard within a dashboard or business story? - sariga.vr@bdb.ai - 12-25-2022

var a=" Type here the open doc link of the dashboard or the story that to be opened ";
window.open(a,'_self');

Note : to open within dashboard(hyperlink) then use the keyword '_self'.
          to open in new window then use keyword '_blank'.