
12 risposte
Hi Tharun, As it is mentioned in the hint, that you need to place record Id at the end of url like '/<record id>', that's why you are not able to complete the challenge. Use this:
<apex:page standardController="Account" recordSetVar="accounts">
<apex:pageBlock title="Accounts">
<apex:repeat value="{!Accounts}" var="a">
<li>
<apex:outputLink value="/{!a.id}">{!a.Name}</apex:outputLink>
</li>
</apex:repeat>
</apex:pageBlock>
</apex:page>
Let me know, if you need any other help.
Thanks,Neetu