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