Skip to content

Instantly share code, notes, and snippets.

@DataSolveProblems
Created September 12, 2019 16:32
Show Gist options
  • Save DataSolveProblems/608da1f49474b4d1cb18f7c512228bdb to your computer and use it in GitHub Desktop.
Save DataSolveProblems/608da1f49474b4d1cb18f7c512228bdb to your computer and use it in GitHub Desktop.
<apex:page standardController="Account" recordSetVar="Accounts">
<apex:pageBlock>
<apex:repeat var="a" value="{!Accounts}" rendered="true" id="account_list">
<li>
<apex:outputLink value="/{!a.ID}">
<apex:outputText value="{!a.Name}"/>
</apex:outputLink>
</li>
</apex:repeat>
</apex:pageBlock>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment