for a future search for a solution to create a table with a locked column header:
Here's the css for the main PortfolioList portfolio list , then part of the header :
<style type="text/css"> div.PortfolioList { height:500px; width:680px; position: static; overflow-y:auto; float:left; } div.PortfolioList_hdr { background-color:#7ac0da; height:45px; width:680px; position: static; float:left; } </style>
Now here are the tables from the two sections mentioned above:
<div class="PortfolioList_hdr"> <table id="pftable_hdr"> <caption>Portfolio Definitions</caption> <thead> <tr> <th>Pf Id</th><th>Name</th><th>Exp Type</th><th>Date</th><th>Term</th><th>Exposure</th> </tr> </thead> <tbody> </tbody> </table> </div> <div class="PortfolioList"> <table id="pftable"> <tbody> </tbody> </table> </div>
I used jQuery to add and / or populate content accordingly.
Hope this helps ...
bob.mazzo
source share