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
Jay IiladharJay Iiladhar 

Loading images from an external source

Hi,

I am working on a new project to show images on a record that is stored in a externally from salesforce itsef i.e. Dropbox 

When a record is opened I would like the image to be loaded from dropbox at the top of the record.
BalajiRanganathanBalajiRanganathan

 If you have a Page Layout for the record,
create a simple visualforce page with apex:image tag,
create a new section in the page layout
And then embed the VF Page into that section. If you already have custom page then you can use apex:image tax to insert the image.

<apex:page standardController="Object__c">
<apex:image id="theImage" value="<URL>" width="200" height="200"/>
</apex:page>