Created
March 27, 2017 17:11
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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