I convert an Excel file into html table with the PHPExcel library.
EDITED output : https://jsfiddle.net/simsimzzz/d1ccqveq/15/
How can I ( JQuery ? ) fix the top row as a <thead>
?
<table border="0" cellpadding="0" cellspacing="0" id="sheet0" class="sheet0 gridlines">
<colgroup>
<col class="col0">
<col class="col1">
<col class="col2">
<col class="col3">
</colgroup>
<tbody>
<tr class="row0">
<td class="column0 style3 s">Client Type</td>
<td class="column1 style3 s">Client</td>
<td class="column2 style3 s">N° Incident</td>
<td class="column3 style3 s">blabla</td>
</tr>
</tbody>
PHPExcel doesn't generate <thead></thead>
..
EDIT : Now I have a <thead></thead>
, how can I fix this one and keep the width of cells according to the <tbody>