Skip to content

Instantly share code, notes, and snippets.

@douglascayers
Created March 27, 2017 17:11
Show Gist options
  • Save douglascayers/3fe4cc5ba19ab627519dfdcedb897ae3 to your computer and use it in GitHub Desktop.
Save douglascayers/3fe4cc5ba19ab627519dfdcedb897ae3 to your computer and use it in GitHub Desktop.
Example Visualforce page that displays the Classic Attachments and Salesforce Files related lists.
<apex:page standardController="Account">
<!-- classic attachments related list -->
<apex:relatedList subject="{!account.id}" list="CombinedAttachments" />
<!-- new salesforce files related list -->
<apex:relatedList subject="{!account.id}" list="AttachedContentDocuments" />
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment