Use IFrame in LWC Salesforce

by Rijwan Mohmmed
6 comments
use-iframe-in-lwc-salesforce

Hello friends, today we will discuss Use IFrame in LWC component in Salesforce. We use an iframe to load other website pages. Like if you want to show third-party page eg. google.com then you just need to put this URL link in iframe src. We can give height and width in the iframe. We also use event listeners like onload for the call LWC js method.

Also check this: Test Data Factory in Apex Salesforce

Key Highlights :

  1. We use the iframe to display visualforce page where we can send parameters in URL and the page load accordingly.
  2. We also use iframe for generating pdf.
  3. Load third-party web page
  4. we need to put a third-party URL in CSP security so the page can load in Salesforce.

Code :

First, we will store our website link in CSP Trusted Sites.

IFrame in LWC Salesforce
IFrame in LWC Salesforce

lWCIFrame.HTML :

<template>
  <iframe
    src={url}
    height={height}
    width={width}
    referrerpolicy={referrerPolicy}
    sandbox={sandbox}
    title="techdicer"
  ></iframe>
</template>

lWCIFrame.JS :

import { LightningElement, track } from 'lwc';
export default class LWCIFrame extends LightningElement {
    @track height = '900px';
    @track referrerPolicy = 'no-referrer';
    @track sandbox = '';
    @track url = 'https://techdicer.com/';
    @track width = '100%';
}

lWCIFrame.js-meta.xml :

<?xml version="1.0"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
	<apiVersion>54.0</apiVersion>
	<isExposed>true</isExposed>
	<targets>
		<target>lightning__HomePage</target>
	</targets>
</LightningComponentBundle>

Output :

use-iframe-in-lwc-salesforce-output

Reference :

  1. LWC

You may also like

6 comments

Shivraj February 24, 2023 - 5:43 am

Hi I’m unable to get ifream “getting connection refuse error”. I have followed steps which are mentioned here

Reply
Rijwan Mohmmed February 24, 2023 - 6:19 am

Hi Shivraj,
Did you follow all steps, and add site in remote site settings

Reply
Bilal April 13, 2023 - 7:09 am

I tried all possible solutions but still getting “Refused to connect ” error

Reply
Rijwan Mohmmed April 14, 2023 - 5:19 pm

Did you put store website link in CSP Trusted Sites

Reply
madhav May 12, 2023 - 3:02 pm

Hi sir!….

I have created a flow its working fine on my site with the help of experience builder page. but now i need to call that flow directly on my site.

like embedded component in web-page.

and i have founded on resource for that but its not working for me ,

https://medium.com/@justindixon91/hackforce-how-to-place-screen-flows-on-your-website-4d93665f0c9c

plz help me out!!!

Reply
Pankaj June 1, 2023 - 6:35 pm

Hi, I have tried this with the google.com url it was not working, but I have also tried with your blog url it was working I don’t know why will you please help on this?

Reply

Leave a Comment