table with scrollbar?

  • Thread starter Thread starter Brock
  • Start date Start date
B

Brock

Is there a way to place a vertical scrollbar on the table, or a way to
embed the table in another control type that I could put a scrollbar
in?
 
The closest you can come, I believe is putting the Table in a DIV tag:
<div id="Layer1" style="position:relative;width:450px;
height:300px;overflow: scroll;">
Put your table here and adjust size of div to your needs
</div>

David Wier
http://aspnet101.com
http://iWritePro.com - One click PDF, convert .doc/.rtf/.txt to HTML with no
bloated markup
 
Thanks that works, but it moved the table, which was on my upper left
part of my screen, to below another <div><div/> (which is in the upper
lefl of my screen, that hold a datagrid. I tried to code the positions
as absolute and with my desired position numbers but that scrambled
the table's contents.
 
Back
Top