Forum Discussion

Juramirez's avatar
Juramirez
Resolver I
8 years ago
Solved

Dashboard embedded

Hi! I'm embedding a Dashboard using this code from Github and it works fine but what I want is that the dashboard that is embedded works as the Dashboard that I have in my own workspace (on app.power...
  • Eric_Zhang's avatar
    8 years ago

    Juramirez wrote:

    Hi! I'm embedding a Dashboard using this code from Github and it works fine but what I want is that the dashboard that is embedded works as the Dashboard that I have in my own workspace (on app.powerbi.com). This means that when I clicked on a tile that is pinned from one report, the report gets open (where the visual graph is) and I can see the information that is there. Actually the embedded dashboard and his tiles just are like images and this can't be done. There's a way to do this? 


    Juramirez

    That is not possible in embedding scenario. When embedding a dashboard, the embedding token has no more access to any other reports/dashboards than the embedded dashboard. Actually you can still customize the tile click events with Power BI Javascript API. See snippet below.

     

        var config = {
            type: 'dashboard',
            tokenType: models.TokenType.Embed,
            accessToken: accessToken,
            embedUrl: embedUrl,
    		pageView: "fitToWidth",
            id: embedDashboardId
        };
     
        var dashboardContainer = $('#dashboardContainer')[0] ;
     
        var dashboard = powerbi.embed(dashboardContainer, config); 
    	
        dashboard.on("tileClicked", function() {
        console.log("tileClicked");
    });