W
|
wildwally 1/25/2013 |
PHP Runner utilizes the PHPExcel class/library to accomplish the export capability. Perhaps you could create/modify your own export file to accomplish what you want, documentation and examples can be found at the phpexcel.codeplex.com. It rather easy to do once you dig into the examples and documentation to understand whats taking place. |
M
|
mmponline author 1/28/2013 |
Thanks Wally, will give it a try. |
M
|
mmponline author 1/28/2013 |
Wally (and others that can help please) $totalsFields[] = array('fName'=>"Price", 'totalsType'=>'', 'viewFormat'=>"Currency");
|
W
|
wildwally 1/29/2013 |
The admins or someone else can correct me if I'm wrong, but the yourpage_export.phpdoesn't actually do the work of the export. It sets everything up and then redirects to the export_function.phpfile which is the file that uses the PHPEXCEL plugin. And to prevent messing with the basic export I suggest you preserve the original documents. Create a copy of the export_function.phpname it something different and have the specific page use the modified version instead of the generic excel export. |
M
|
mmponline author 1/30/2013 |
Wally $totalsFields[] = array('fName'=>$value, 'totalsType'=>$totalsType, 'viewFormat'=>$pageObj->pSet->getViewFormat($value));
$totalsFields[] = array('fName'=>"Description", 'totalsType'=>'', 'viewFormat'=>"DETAILS HERE OF THE FORMAT");
|