Forum Discussion

JMSNYC's avatar
JMSNYC
Icon for Helper III rankHelper III
8 years ago
Solved

Report Tabs Disappearing in Power BI Embedded

Hi. I have another issue with my PowerBI file that I export as Embedded reports in my App: On my PBI Desktop file and in PowerBI Service, I can see the different tabs for 4 pages of reports : https://...
  • JMSNYC's avatar
    JMSNYC
    8 years ago

    Thanks Xiaoxin again.

     

    I still did not see the page number in the embedded display of my report, but exploring further this topic

     

    ... and for the benefit of the community ...

     

    ... I used bookmarkl/slicer features that helped me recreate the navigation pages.

     

    Best.

    JM

  • socc726's avatar
    socc726
    7 years ago

    you may want to do a find in your project for:

     

    <div id="reportContainer"></div>

     

    or 

     

    var embedContainer = $('#reportContainer')[0];

     

    If you are having trouble finding where the embeded report is instantiated then trying running a find on some of the config object keys like: accessToken, embedUrl, pageView, tokenType

     

    also you can take a look at the embed playground, maybe the person who implemented it followed the examples here: https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html

     

    What you are looking for is the place where a new embed object is created:

     

    var report = powerbi.embed(embedContainer, config);

     

    The 2nd parameter is the config settings which my first post referenced. This object is where you can turn on/off the report tabs - navContentPaneEnabled: true