2017-03-13 14 views
0

ExcelへのHTMLのエクスポートにtable2excel.jsを使用していますが、正常に動作しています。条件ごとに行または列の色を変更したい。出来ますか?Excelの書式設定table2excel.js

<table id="ExcelTable" style="text-align: left;display:none"> 
    <tr class="rpthide"> 
     <td class="Supplier" style="font-size:14px;"></td> 
     <td class="ContractNo" style="font-size:14px;"></td> 
     <td class="OrderNo" style="font-size:14px;"></td> 
     <td class="Article" style="font-size:14px;"></td> 
     <td class="Ordered" style="font-size:14px;"></td> 
     <td class="ContainerNo" style="font-size:14px;"></td> 
     <td class="ETA" style="font-size:14px;"></td> 
     <td class="Dispatched" style="font-size:14px;"></td> 
     <td class="AtPort" style="font-size:14px;"></td> 
     <td class="Arrived" style="font-size:14px;"></td> 

    </tr> 
</table> 

$("#ExcelTable").table2excel({ 
       // exclude CSS class 
       exclude: ".noExl", 
       name: "Yarn Status List", 
       filename: "Yarn Status List" //do not include extension 
      }); 
+0

あなたがこれまでに出ているものを示すコードを提供することができますか? – Arg0n

+0

あなたのオフィスのバージョンは何ですか?私は自分のPCで生成されたファイルを開くことができません –

答えて

0

私はあなたがHTMLテーブルに任意のCSSスタイルを適用することができますExcellentExport.js としてのようなより良いツールを使用することをお勧め、と彼らは出力でエクスポートされます。

使用例:

<script src="excellentexport.js"></script> 

<table id="ExcelTable"> 
    <tr> 
    <td style="color:red">Column 1</td> 
    <td style="color:blue">Column 2</td> 
    <td style="color:green; font-weight:bold">Column 3</td> 
    </tr> 
    <tr style="color: purple"> 
    <td>400</td> 
    <td>500</td> 
    <td>600</td> 
    </tr> 
</table> 

<a download="myFile.xls" href="#" onclick="return ExcellentExport.excel(this, 'ExcelTable', 'Sheet1');">Export to Excel</a> 
関連する問題