You need to sign in to do that
Don't have an account?
Displaying Records, Fields, and Tables - Challenge issue
This is my code for the Trailhead Displaying Records, Fields, and Tables challenge:

This is my output:

They challenge fails but I am displaying all content.. Please let me know what is wrong.
This is my output:
They challenge fails but I am displaying all content.. Please let me know what is wrong.
All Answers
what is the error message ?
try displaying the "Name" field of account instead of accountid
Challenge not yet complete... here's what's wrong:
The page does not include a apex:outputField component bound to the opportunity account name
Using this statement below gives me the error above.
<apex:outputField value="{! Opportunity.Name }"/>
This statement displays the Account Name of the Opportunity
<apex:outputField value="{! Opportunity.AcccountID }"/>
So not sure what Trailhead is looking for
opportunity.account.name
Thanks Sakthivel
2. if you use opportunity.account.name it will give only account name without hyperlink
Trailhead looking for second solution
thanks,
Naveen