5093 Posts in 1516 Topics by 1113 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 947 Views |
-
SS2.4 Custom Reports

23 June 2010 at 5:22am Last edited: 23 June 2010 5:23am
I had some custom reports in 2.3 and now in 2.4 they no longer work I have found most of the changes in the updated SS_reports class however when I override getReportField() with out inheriting the parent data nothing is displayed.
The following just displays no form at all the report just has the title and description of the report.
function getReportField() {
$fields = Contact::$table_overview_fields;$table = new ComplexTableField(
$this,
'Contacts',
'Contact',
$fields
);
$table->Markable = true;
$table->showPagination= false;
$table->setFieldCasting(array(
'Created' => 'Date'
));
$table->setFieldListCsv(array(
'Surname' => 'Surname',
'FirstName' => 'First Name'
));
$table->setPermissions(array(
'export'
));
$table->setPageSize(250);
$table->csvHasHeader= true;
return $table;
}
function getCustomQuery() {
//buildSQL($filter = "", $sort = "", $limit = "", $join = "", $restrictClasses = true, $having = "")
$query = singleton('Contact')->buildSQL('', 'Contact.Surname DESC');
$query->groupby[] = 'Contact.Created';
return $query;
}Any help or advise would be great.
| 947 Views | ||
|
Page:
1
|
Go to Top |

