Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

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.

Data Model Questions /

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

GroupBy is not supported in DataList for SilverStripe 3 ?


Go to End


2 Posts   4729 Views

Avatar
Phat

Community Member, 8 Posts

13 May 2012 at 10:47am

Hi there,

I am struggling to convert the code below from the tutorial (http://doc.silverstripe.org/sapphire/en/tutorials/3-forms) to Silverstripe 3. I understand using DataList is a recommend approach and DataObjectSet is depreciated, but it seems that Group By is not supported in DataList.
Anyone has idea how to make the code working using SilverStripe 3’s new ORM like http://www.silverstripe.org/silverstripe-3-s-new-orm/ ?

function BrowserPollResults() {
$submissions = DataObject::get('BrowserPollSubmission');
$total = $submissions->Count();

$doSet = new DataObjectSet();
foreach($submissions->groupBy('Browser') as $browser => $data) {
$percentage = (int) ($data->Count() / $total * 100);
$record = array(
'Browser' => $browser,
'Percentage' => $percentage
);
$doSet->push(new ArrayData($record));
}

return $doSet;
}

Avatar
t|m

Community Member, 19 Posts

25 June 2012 at 11:28am

Hey,

for simmilar functionality you can use GroupedList:

$groupedSubmissionsList = new GroupedList($submissions);
$grouped = $groupedSubmissionsList->groupBy("Browser");

Cheers