Created
September 12, 2019 16:32
-
-
Save DataSolveProblems/608da1f49474b4d1cb18f7c512228bdb 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