Visual force page displaying list of Accounts with links to their respective record detail pages #inSalesforce
Visual force page displaying list of Accounts with links to their respective record detail pages:
<apex:page standardController="Account" recordSetVar="accounts">
<apex:pageBlock>
<apex:repeat value="{!accounts}" var="ac">
<li>
<apex:outputLink value="/{!ac.ID}">
<apex:outputText value="{!ac.name}"/>
</apex:outputLink>
</li>
</apex:repeat>
</apex:pageBlock>
</apex:page>
<apex:pageBlock>
<apex:repeat value="{!accounts}" var="ac">
<li>
<apex:outputLink value="/{!ac.ID}">
<apex:outputText value="{!ac.name}"/>
</apex:outputLink>
</li>
</apex:repeat>
</apex:pageBlock>
</apex:page>
Comments
Post a Comment