Skip to content

Instantly share code, notes, and snippets.

@DataSolveProblems
Created September 12, 2019 18:15
Show Gist options
  • Save DataSolveProblems/0ae95b7d89190dc3c66ea287d0979313 to your computer and use it in GitHub Desktop.
Save DataSolveProblems/0ae95b7d89190dc3c66ea287d0979313 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