Forum Discussion
Embedding Power BI I-frame in CRM - Loading Data
Facing similar issue.
If page is loaded in the browser directly with ?rs:embed=true everything works fine.
If I use the same URL in an iframe on SharePoint on prem, the loading sign stay for ever.
When using F12 an error is shown
ReferenceError: 'MutationObserver' is undefined
depends on your version of sharepoint on premises . I assume that it is probably adding things like.
<meta http-equiv="X-UA-Compatible" content="IE=10"> to the top of the iframe web part (I assume that is how you are embedding).... I would check a fiddler trace of this page and see if that's what is going on.
An edit of your master page could fix this issue. Make sure you back it up prior to doing it.
Hope this helps.
Luis.
- Grumelo7 years agoAdvocate II
In the Iframe there is
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
but in the SharePoint page there is
<meta http-equiv="X-UA-Compatible" content="IE=10">
no way the Master page can be change at a global level.
any idea how to change this meta on a specific page ?
- luisrh7 years agoResponsive Resident
You can try this. It should work.. https://paultavares.wordpress.com/2015/01/20/how-to-render-a-sharepoint-page-in-ie-using-edge-mode-without-changing-the-master-page/