function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Omri.cohOmri.coh 

Adding an iFrame to objects such as Lead, Account, Contact etc...

Hi There,

 

I'm a newbie to SalesForce (so please bare with me... :-)),

I'm trying to add an iFrame to objects such as Lead, Account, Contact etc... I was able to add it to the Home menu, but I couldn't find the same functionality to the other objects.

(under App Setup --> Customize --> Home --> Home Page Components)

 

The end product should contain an iframe with a dynamic URL.

 

I did create an VF component with the following source:

 

<apex:component >
<apex:iframe src="SomeURL"
 scrolling="true"
 height="600"
 width="1000"/>
</apex:component>

But I did not find the place it should go.

 

Thank you,

 

 

 

Omri.cohOmri.coh

Anyone?