10382 Posts in 2196 Topics by 1711 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 931 Views |
-
[SOLVED]Change sort order on SubmittedFormReportField

18 May 2009 at 3:57pm Last edited: 19 May 2009 4:35pm
Hi, can anyone tell me how I can change the order that Submitted form responses show up in the CMS?? (I just want them in descending order so that latest are at the top of the page...)
cheers
-
Re: [SOLVED]Change sort order on SubmittedFormReportField

18 May 2009 at 8:27pm
These instructions are based off userforms 0.2 but will probably work in 0.1 (with line numbers slightly diff
The function which returns the list of results is Submissions() in SubmittedFormReportField.php (line 20). Rather then just returning the values you will need to sort them then return them like this
function Submissions() {
$submissions = $this->form->getRecord()->Submissions();
if($submissions) $submissions->sort('Created', 'DESC'); // sort if they exist
return $submissions;
} -
Re: [SOLVED]Change sort order on SubmittedFormReportField

19 May 2009 at 4:35pm Last edited: 19 May 2009 4:35pm
Great, thanks Will, thats it.
| 931 Views | ||
|
Page:
1
|
Go to Top |

