I’m trying to implement the PHPExcel i read from some of the forum topics but i haven’t succeeded in implementing it in our codes.
When we place this codes to actinAdmin in the controller:
$this->toExcel($model,
array(
'id',
'name',
'building.name::Building', // Note the custom header
),
'Test File',
array(
'creator' => 'Zen',
),
'Excel2007' // This is the default value, so you can omit it. You can export to CSV, PDF or HTML too
);
we get this error:
Alias "ext.eexcelview.EExcelBehavior" is invalid. Make sure it points to an existing PHP file.
help please