-
Notifications
You must be signed in to change notification settings - Fork 751
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Table with td and colspan attributes: wrong width calculation #360
Comments
Precision:
-> my bad, i had a specified width on the td' |
In your case, why using colspan for the first line ? You create a third « virtual » column that html2pdf can not understand... |
@spipu thanks for your answer, I simplified my case here, i have a more complex table for the project i'm working on which need those colspan: I have a thead needing colspan in case of data, and if no data i have a tbody with a cell having full colspan: <table>
<thead>
<tr>
<td>#</td>
<td>A</td>
<td>B</td>
<td>C</td>
<td>D</td>
<td>E</td>
<td>F</td>
<td colspan="2">Colspan Here</td>
<td colspan="2">MColspan Here</td>
</tr>
<tr>
<td colspan="7"></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</thead>
<tbody>
<-- if data -->
<tr>
<td>.a..</td>
<td>.b.</td>
<td>..c</td>
<td>d..</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
</tr>
<-- else -->
<tr>
<td colspan="11">
NO DATA!
</td>
</tr>
<-- /if -->
</tbody>
</table> Without the second line <tr>
<td colspan="7"></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr> This don't work properly |
and if you add <col ...> tags ? |
hey @spipu thanks for your answer, I'm still having the issue using <col...> tags: <table border="1">
<colgroup>
<col><col><col>
</colgroup>
<thead>
<tr>
<td style="padding: 1cm;">First column</td>
<td colspan="2" style="padding: 1cm;">Second column with a colspan of 2</td>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3" style="padding: 1cm;">Third column with a colspan of 3</td>
</tr>
</tbody>
</table> I made an example out of it: I tried to figure it out but \Spipu\Html2Pdf\Html2Pdf::_calculateTableCellSize is barely understandable for a novice. Thanks for your help, |
fixed in the master branch. |
Hey,
I have a problem (in version ^5.2) with this HTML:
Don't work:
The "Two" cell appear outside the table, with a width of 0
I need to add another line to help the lib understand what i want:
Works:
Expecting:
We should be able to use two rows and colspan
Thanks for your help!
The text was updated successfully, but these errors were encountered: