5102 Posts in 1520 Topics by 1116 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 175 Views |
-
$summary_fields in modelAdmin (2.4)

7 August 2012 at 10:34pm
Hey guys,
any ideas why my summary fields arent working? It's just displaying the default columns for the DataObject.
class Customer extends DataObject {
public static $db = array(
[...]
);
public static $indexes = array(
'Email' => 'unique'
);
public static $has_one = array(
'CustomerGroup' => 'CustomerGroup'
);
public static $summary_fields = array(
'Name' => 'Name',
'Telephone' => 'Telephone',
'Email' => 'Email',
'Created' => 'CreatedText'
);
public static $casting = array("CreatedText" => "Text");
public function CreatedText() {
return $this->Created;
}class crmAdmin extends ModelAdmin {
public static $menu_title = 'Customer Relationship Manager';
public static $url_segment = 'crm';
public static $managed_models = 'CustomerGroup';[...]
-
Re: $summary_fields in modelAdmin (2.4)

8 August 2012 at 9:06pm
Your managing the 'CustomerGroup' class but your object classname is Customer?
| 175 Views | ||
|
Page:
1
|
Go to Top |


