Skip to content

Instantly share code, notes, and snippets.

@mhamzas
Forked from douglascayers/AccountPage.vfp
Created March 11, 2021 06:55
Show Gist options
  • Save mhamzas/2b6c667f91cc6643c27b9a57edb2111c to your computer and use it in GitHub Desktop.
Save mhamzas/2b6c667f91cc6643c27b9a57edb2111c 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