Forum Discussion
Anonymous
7 years agoNot applicable
Embedding reports from one application (which has embed logic) in another application in a iframe
We have a working application with embedds Power Bi reports (app owns data approach)
Our problem:
We would like to embed the reports on another site in the same company (another html page in a di...
- 7 years ago
Hi Anonymous ,
Instead of using iframe could you pls try the PowerBI Javascript to embed the report
<script> // Read embed application token from Model var accessToken = "@Model.EmbedToken.Token"; // Read embed URL from Model var embedUrl = "@Html.Raw(Model.EmbedUrl)"; // Read report Id from Model var embedReportId = "@Model.Id"; // Get models. models contains enums that can be used. var models = window['powerbi-client'].models; // Embed configuration used to describe the what and how to embed. // This object is used when calling powerbi.embed. // This also includes settings and options such as filters. // You can find more information at https://github.com/Microsoft/PowerBI-JavaScript/wiki/Embed-Configuration-Details. var config = { type: 'report', tokenType: models.TokenType.Embed, accessToken: accessToken, embedUrl: embedUrl, id: embedReportId, permissions: models.Permissions.All, settings: { filterPaneEnabled: true, navContentPaneEnabled: true } }; // Get a reference to the embedded report HTML element var reportContainer = $('#embedContainer')[0]; if ("@Model.Username" != "") { $("#RLS").prop('checked', true); $("#RLSdiv").show(); } else { $("#RLS").prop('checked', false); $("#RLSdiv").hide(); } if ("@Model.IsEffectiveIdentityRequired.GetValueOrDefault()" == "True") { $("#noRLSdiv").hide(); $("#RLS").removeAttr("disabled"); $("#RLS").change(function () { if ($(this).is(":checked")) { $("#RLSdiv").show(300); } else { $("#RLSdiv").hide(200); } }); } else { $("#noRLSdiv").show(); } // Embed the report and display it within the div container. var report = powerbi.embed(reportContainer, config); </script>Basically you need to pass the embed token from your Common API to the Customer App
Khemindra
6 years agoNew Member
Hi
Is it possible for PowerBI to incorporate an iframe of an external web application? I.e. we want to ensure Power BI stays as the single source of truth.
Is it possible for PowerBI to incorporate an iframe of an external web application? I.e. we want to ensure Power BI stays as the single source of truth.
- Jayendran6 years agoSolution Sage
Hi Khemindra
Just want to clear the context.
Do you want to embed an iframe of other reports/external pages into power reports ?
or
Do you want to embed inframe of an powerbi reports into an external wesites?
- Khemindra6 years agoNew MemberHi
I want to embed an iframe of other External pages into power reports OR a section in PowerBI where users can see other visualizations from this external applocation- Jayendran6 years agoSolution Sage
Hi Khemindra ,
Yes it is possible . Please refer below link
https://powerpivotpro.com/2018/11/dynamically-embedding-web-pages-in-power-bi/