Man. I've stumbled around for hours trying to get a simple GridField happening in SS3. Finally came across this page; and guess what - it's working! Hope this saves some time for someone else.
We've moved the forum!
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
Oh my god... thank you SO much! :-)
PS just for any newbies... a *simple* way to list all of the "contacts" on your site would be to add the following rough code to the "ContactListPage.ss" template:
<% control Contacts %>
<p style="clear:left;">
<% if ProfilePicture %><img src="$ProfilePicture.URL" style="float:left;margin:20px;" /><% end_if %>
Name: $Name<br/>
<em>$Description</em><br/>
<a href="$Website">Visit Website</a><br/>
</p>
<% end_control %>
Linsey x