A collection of snippets and samples related to the Power Platform.
References I want to remember for later.
All Power Fx snippets have been separated out into the power-fx.md file
In this article
I’ll just leave this here…nothing special to it but I have checked this page for the format half a dozen times…time to add it!
https://[applinkurl]?source=iframe
This can be done with a URL, however that opens the link in a new window. To have the app open in the main panel of a model-driven app, the technique is to use a Web Resource for the navigation item. The code of that web resource generally looks like this:
<html>
<head>
<title>Embedded App</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
}
iframe {
display: block;
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<iframe src="[CanvasAppUrlWithout]"></iframe>
</body>
</html>
Source: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/embed-apps-dev