How can I stop the heading row on a fancytree table from scrolling - allowing only the data rows to scroll?
Here's the HTML I'm using.
<div id="scrollParent_history" style="height: 420px; overflow: auto;">
<table id="lb_tree_bliss_history" class="lb_report_tree">
<colgroup>
<col width="175px">
<col width="20px">
<col width="20px">
<col width="20px">
<col width="20px">
<col width="20px">
<col width="20px">
</colgroup>
<thead>
<tr> <th>Date</th> <th>First</th> <th>max</th> <th>Min</th> <th>Final</th> <th>Activities</th> <th>Change</th> </tr>
</thead>
<tbody></tbody>
</table>
</div>