data table export

data table export

lijoevlijoev Posts: 5Questions: 2Answers: 0

i have a table with multiple <tr> in <thead> but while exporting the table i get only one <tr>. so please help me how to get the full table data........my table structure is as given below

<?php $i = 0; ?> <?php foreach($invoices as $invoice) {?> <?php } ?>

รายงานภาษีขาย

บริษัท ทรู อินเทอร์เน็ต ดาต้า เซ็นเตอร์ จำกัด (สำนักงานใหญ่)

วันเริ่มต้น 12-12-2016 วัันสิ้นสุด 12-12-2016    
Company Name Start Date blah Lor jlfklfll dfkdflf VAT Rate: 7%
Company Address Start Date blah Lor jlfklfll dfkdflf
Company Tax Id 1234567
Item Date Tax Invoice No. Value VAT Total
Text for total xxxxx xxxxx xxxxx
<?php echo ++$i; ?> <?php echo $invoice['date']; ?> <?php echo $invoice['invoice_no']; ?> <?php echo $invoice['value_total']; ?> <?php echo $invoice['vat']; ?> <?php echo $invoice['total']; ?>

Replies

  • allanallan Posts: 64,940Questions: 1Answers: 10,755 Site admin

    This is comes up a lot and a quick search would find the answer. Unfortunately, the export functions do not support multiple rows in the table header at the moment.

    Allan

This discussion has been closed.