You need to sign in to do that
Don't have an account?
Repeater
I am totally new to Visualforce and never coded HTML before. I am 2 challenges away (out of 9) to finish this and just can't figure out why I am still gettin this error message.
Here is the challenge:

I believe I covered the highlighted items but don't have a clue about the ones circled with red.
I am under the impression that <apex:pageBlockTable value="{! Account }" var="a"> is a repeater as it keeps creating lines of Accounts,
as shown here:

Below is my code:
<!-- Start -->
<apex:page standardController="Account" recordSetVar="accounts">
<apex:form >
<apex:pageBlock title="Accounts List">
<!-- Accounts List -->
<apex:pageBlockTable value="{! Account }" var="a">
<apex:column value="{! a.Name }"/>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:form>
</apex:page>
<!-- End -->
Any help explaining how to fix the error and complete the remaining tasks will be greatly appreciated.
Here is the challenge:
I believe I covered the highlighted items but don't have a clue about the ones circled with red.
I am under the impression that <apex:pageBlockTable value="{! Account }" var="a"> is a repeater as it keeps creating lines of Accounts,
as shown here:
Below is my code:
<!-- Start -->
<apex:page standardController="Account" recordSetVar="accounts">
<apex:form >
<apex:pageBlock title="Accounts List">
<!-- Accounts List -->
<apex:pageBlockTable value="{! Account }" var="a">
<apex:column value="{! a.Name }"/>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:form>
</apex:page>
<!-- End -->
Any help explaining how to fix the error and complete the remaining tasks will be greatly appreciated.
<apex:page standardController="Account" recordSetVar="accounts">
<ul>
<apex:repeat value="{!accounts}" var="e">
<li><apex:outputLink value="/{!e.Id}">{!e.Name}</apex:outputLink></li>
</apex:repeat>
</ul>
</apex:page>
let me know if this works for you
All Answers
<apex:page standardController="Account" recordSetVar="accounts">
<ul>
<apex:repeat value="{!accounts}" var="e">
<li><apex:outputLink value="/{!e.Id}">{!e.Name}</apex:outputLink></li>
</apex:repeat>
</ul>
</apex:page>
let me know if this works for you