Skip to main content

I’m trying to display an image that is attached via a field on a record.


If I use the image component with the following settings, I get the ‘broken image’.


If I use the file upload component with the following settings, it works as expected.


Why? What am I doing wrong?

Matt,

Is Photo__c a reference to the Skuid File object? The Attachment field needs an actual Salesforce Attachment Object Id, so if it is a reference to File, you’ll need to select the related Attachment Id instead: Photo__c.skuid__AttachmentId__c.


That was it! Thanks.