簡體   English   中英

PHPExcel ReadFilter不起作用

[英]PHPExcel ReadFilter doesnt work

我仍然堅持使用symfony2和phpexcel。

首先,我不知道為什么我的HTML編寫器不生成<thead></thead>標記。

我不明白為什么空白列仍然顯示,如您在此屏幕截圖中所見,應用了ReadFilter:

我只想加載前13列:

在此處輸入圖片說明

public function showClientAction()
{

$excel = glob(''.path.'\\'.tofile.'\\'.$file.'.{xlsx,xls,xlsm,xlsm.ink}', GLOB_BRACE);

$filterSubset = new \PHPExcel_Reader_DefaultReadFilter('A','N');

$objReader = \PHPExcel_IOFactory::createReaderForFile($excel[0]);
$objReader->setReadFilter($filterSubset);


/**  Read the list of worksheet names and select the one that we want to load  **/
$worksheetList = $objReader->listWorksheetNames($excel[0]);
$sheetname = $worksheetList[0];

/**  Advise the Reader of which WorkSheets we want to load  **/
$objReader->setLoadSheetsOnly($sheetname);

$objPHPExcel = $objReader->load($excel[0]);

$writer = \PHPExcel_IOFactory::createWriter($objPHPExcel, "HTML");
$writer->generateSheetData();
$writer->generateStyles();

return $this->render('SocietyPerfclientBundle:Default:testexcel.html.twig', array(
    'excelHtml'=>$writer
));
}

我的篩選器:

class PHPExcel_Reader_DefaultReadFilter implements PHPExcel_Reader_IReadFilter {

    public function __construct($fromColumn, $toColumn) {
        $this->columns = array();
        $toColumn++;
        while ($fromColumn !== $toColumn) {
            $this->columns[] = $fromColumn++;
        }
    }

    public function readCell($column, $row, $worksheetName = '') {
        // Read columns from 'A' to 'AF'
        if (in_array($column, $this->columns)) {
            return true;
        }
        return false;
    }
}

我不明白為什么這些空白列在這里...

ReadFilter無法與HTML Writer一起使用嗎?

我不能只是做:

.column14 { display:none;!important;}
.column15 { display:none;!important;}
.column16 { display:none;!important;}
.column17 { display:none;!important;}
etc...

因為我使用jQuery插件“ floatThead”來創建固定的<thead></thead>

在我看來 :

              var table = $('#sheet0'); // select the table of interest
              var thead = $('<thead/>').prependTo(table);
 // create <thead></thead>


          table.find('tbody tr.row0').appendTo(thead);


              // Now the table is ready to have your chosen method applied to fix the position of the thead.
              $('table.sheet0').floatThead({
                  position: 'fixed',
                  index: '8',
                  overflow: 'auto'
          });

請幫我..

我認為 :

$this->columns[] = $fromColumn++;

沒做什么 。

嘗試:

for ($i = $fromColumn; $i != $toColumns ; $i++)
    {
        $this->columns[$i]=$i;
    }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM