Text cells must be left align into excel 2007 export.

This commit is contained in:
Laurent Destailleur
2013-05-14 23:54:22 +02:00
parent da4f13f387
commit f6dfcb756c

View File

@@ -351,6 +351,7 @@ class ExportExcel2007 extends ExportExcel
$this->workbook->getActiveSheet()->SetCellValueByColumnAndRow($this->col, $this->row+1, (string) $newvalue);
$coord=$this->workbook->getActiveSheet()->getCellByColumnAndRow($this->col, $this->row+1)->getCoordinate();
$this->workbook->getActiveSheet()->getStyle($coord)->getNumberFormat()->setFormatCode('@');
$this->workbook->getActiveSheet()->getStyle($coord)->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_LEFT);
}
else
{