Hi all
I have a issue with putting two fields in the summary_fields, its either 'Lead.FirstName' OR "Tenant.FirstName", what I dont want to happen is have 4 fields when two will do... is there a way to merge the fields, something like this...
static $summary_fields = array(
'DueDate',
'Lead.FirstName' . "Tenant.FirstName",
'Lead.LastName',
'Title',
'Complete'
);
Thanks