koolphp / koolreport

This is an Open Source PHP Reporting Framework which you can use to write perfect data reports or to construct awesome dashboards using PHP
https://www.koolreport.com/
MIT License
226 stars 66 forks source link

Excel Export #12

Open georgegijo opened 6 years ago

georgegijo commented 6 years ago

Downloaded the excel package and put it to the Packages folder. But an error is generated Call to undefined method SponsorReportData::exportToExcel(). Can you please let me know what could be the problem? Thanks.

koolphp commented 6 years ago

Hi George,

To use the function exportToExcel, please use the ExcelExportable trait like this:

`class MyReport extends koolreport\KoolReport {

use \koolreport\excel\ExcelExportable;

...`

georgegijo commented 6 years ago

Thanks for the help. That resolved the issue. Can you please tell me how can I download the excel file. when I use $report->run()->exportToExcel()->toBrowser("myreport.xlsx"); it is downloading not the excel file but the same html page I am in.

dongnl commented 6 years ago

Hi George,

Did your browser auto save any file?

georgegijo commented 6 years ago

nothing is autosaved.

dongnl commented 6 years ago

Hi George,

It seems there's problem with exporting your data. I suggest you going to koolreport website, client section to open a ticket and send us your php code as well as sample data for our support team to check on it.