21291 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 204 Views |
-
Multiple Grouping Levels in SS3

22 September 2012 at 6:47am Last edited: 22 September 2012 6:48am
I'm struggling to get multiple grouping levels working in SS3, it was very simple in SS2.
Basically I have a bunch of Event data objects, each with a Date & Title and I wish to display them in the template grouped by Year and then Month like so:
2012
January
Event X
Event Y
February
Event Z2013
January
Event A
Event BThis was easy in SS2, I could just do this:
function Entries() {
return DataObject::get("Entry");
}<% control Entries.GroupedBy(Year) %>
<p>$Year</p>
<% control Children.GroupedBy(Month) %>
<p>$Month</p>
<% control Children %>
<p>$EventTitle</p>
<% end_control %>
<% end_control %>
<% end_control %>
However in SS3, I'm struggling to get both groupings to work, I can get the Year grouping working, but not the Month one also. It's something to do with the new GroupedList.
Can someone please advise how I can achieve this in SS3?
Thanks!
James -
Re: Multiple Grouping Levels in SS3

5 December 2012 at 12:48am
Any advice on how to achieve this in SS3 would be much appreciated!
| 204 Views | ||
|
Page:
1
|
Go to Top |
