Hello Power Addicts, welcome back to another blog post where I am going to show you a simple way of loading or opening or launching, whatever you may call it, a specific screen of any canvas app which is embedded in iFrame component in a Power Page based on user’s action in the web page.
A basic understanding of Canvas app and Power Pages is required along with HTML and JS.
I have created a canvas app named “My Hospital App” and added 3 screens in it.
**I am not going to discuss how the controls in the screen are configured as it is out of context for this post.
I have added a new page “Appointments” in Power Page app and included an iFrame component. I have also added 2 buttons. Save and close the web page.
Lets customize the web page a little bit using the Portal Management app. To do so, I am going to open my Portal Management app and search for this web page.
For the iframe tag, I have added the id and removed the value from src as this value will be updated based on the button clicked.
Go to Advanced tab and copy-paste the below code in the Custom Javascript section.
$(document).ready(function(){
$("#myAppointments").bind("click", function() {window.open("https://myhospital.powerappsportals.com/Appointments/?screen=Dashboard","_self");});
$("#bookAppointment").bind("click", function () {window.open("https://myhospital.powerappsportals.com/Appointments/?screen=BookAppointment","_self");});
});
$(document).ready(function(){
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
var ifrm = document.getElementById("iframecomp");
ifrm.src = "https://apps.powerapps.com/play/{You can get this URL from App details}?tenantId={tenant ID}?source=website&screen=" + urlParams.get('screen');
});
Save and Close the changes.
Add the below code in the StartScreen property
Switch(Param("screen"),
"Dashboard",'Dashboard Screen',
"BookAppointment",'Book Appointment')
Save and Publish the app.
I have opened my Power Pages application and opened the Appointments page which we have created.
Thank you for sticking till the end. Hope you enjoyed the post and found it helpful. Please share your thoughts in the comments.
Check James Yumnam’s original post https://jamesyumnam.com/2023/06/25/open-specific-screen-of-a-canvas-app-within-an-iframe-component-in-power-page/ on jamesyumnam.com which was published 2023-06-25 19:27:00