Background
I'm trying to clone parts of a table and overlay the clones on top of the original table in order to create headers that are fixed on the page when scrolling. I'm using a jQuery plugin: a modified version of datatables FixedHeader to do this. I tried FixedColumns but it doesn't work the way I want.
I have the above working except that the cloned tables don't line up properly with the source table. e.g. the top header has cells that are narrower than the cells in the real table.
I've tried setting the widths of the cells like the original FixedHeader code does, but this does not seem to have any effect. Also, if manually set the widths in Firebug's Layout tab it updates the style="width: blah" in the element in the HTML view, but does not actually change the width of the cells.
Question
How do I set the widths of cells in a second table to match the widths of the cells in the original table so that they line up when I position the second table on top of the first table.
For a simpler version of the above, consider the following code. Even though I have explicitly set the widths of the first two th elements in both tables, the second table's cells are too narrow. I don't want to specify the widths of the cells in the original table. I only want to set the widths of the cells in the second table to match the first. How do I do this?
<html>
<head>
<title>Layout</title>
<style type="text/css">
td, th {
text-align: center;
border: 1px solid #bbb;
padding: 0px 1px;
font-size: 1.2em;
color: #555;
}
th {
font-weight: normal;
}
th.colhead {
background-color: #ccc;
}
th.reference {
white-space: nowrap;
font-size: 100%;
}
th.rowhead {
white-space: nowrap;
text-align: left;
padding: 0px 0px 0px 10px;
}
th.cathead {
text-align: left;
background-color: #ddd;
padding: 0px 0px 0px 6px;
font-weight: bold;
}
tr {
height: 31px;
}
tr.even {
background-color: #eee;
}
</style>
</head>
<body>
<div id="source">
<table>
<thead>
<tr>
<th class="colhead" style="width:156px">Test Name</th>
<th class="colhead" style="width:102px">Reference Range</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
</tr>
</thead>
<tbody>
<tr>
<th class="rowhead">This is the test</th>
<th class="rowhead">123 - 456</th>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>0</td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
</tbody>
</table>
</div>
<div id="thead_clone">
<table>
<thead>
<tr>
<th class="colhead" style="width:156px">Test Name</th>
<th class="colhead" style="width:102px">Reference Range</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
<th class="colhead">26-07-2011 15:58</th>
</tr>
</thead>
</table>
</div>
</body>
</html>
Edit: I've discovered that for the above code, setting the width of the second table to the same as the first table fixes the issue, but in my real code, the cells are still the wrong width. How do I figure out where the problem is and how to fix it?