Hey,
I'm working on a "little" software project for work.
The goal is to generate a html file with tables and export them into pdf.
Unfortunately I cant get the table to act like I want.
One part of the table should display a timescale with days on the lowest row, weeks,months and years are in the rows above an have a pre-calculated colspan.
Only the s for the days have a width given with css (style="width:...).
The problem is that the width is totally ignored, so fields with days fom 1-9 are only half as width than the others. And in follow, because the fields above size automaticly because they have no width given, their size is also wrong.
Heres the source that is generated: http://pastebin.com/JyiqhSzs
What we tried so far: used non css ( width=""), give the other field also an calculated width (the colspan value multiplied with the width of a day)
We also set style="table-layout:fixed;" for the table but that has no effect, too.
So I dont know how to get the table to have the width I want to have...?