Forum Discussion
2 Replies
- stevediazCloud Apps
Hello
Check below-
<!DOCTYPE html> <html> <head> <title>Jump to Dashboard</title> </head> <body> <a id="dashboardLink" href="#">Jump to Dashboard</a> <script> var dashboardUrls = { dashboard1: "https://your-sisense-environment/dashboard1", dashboard2: "https://your-sisense-environment/dashboard2/ ccsp training " }; document.getElementById("dashboardLink").addEventListener("click", function(event) { event.preventDefault(); var dashboardKey = 'dashboard1'; var dashboardUrl = dashboardUrls[dashboardKey]; window.open(dashboardUrl, "_blank"); }); </script> </body> </html>
Replace the placeholder URLs with your actual Sisense dashboard URLs, and you can add more URLs to the dashboardUrls object as needed. This script will allow you to open Sisense dashboards in new tabs within the same window when the "Jump to Dashboard" link is clicked.
Thank you.