Steve,
One way to accomplish this is to wrap an iFrame within a table:
<table>
<!-- column headers --> <tr> <th></th> <th></th> <th></th> </tr>
<tr> <td colspan="3"> <!-- Display tag goes in the iframe --> <iframe src="/showData.do" .../> </td> </tr>
</table>
In display tag, disable the column headers such that they are not viewable. Ofcourse, you are unable to use a lot of functionality
such as paging and sorting. But since you are in a scrolling inner frame, then paging becomes less of an issue.
There may be slicker ways to do this using DHTML but I don't know them.
/robert
Steve wrote:
can you have the table in a scroll pane, such that when you scroll it the column headings remain visible (column headings do not scroll)?
------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ displaytag-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/displaytag-user

