scrollbars in web datagrid

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Anyone have a suggestion or example on how to add a vertical scrollbar (or similar capability) to a web data grid in an ASP?
Thanks,
Tim
 
Wrap your grid with:

<div style="OVERFLOW: auto; WIDTH: 350px; HEIGHT: 188px"></div>

Of course adjust the width and height as necessary.

-John Oakes


Tim_K said:
Anyone have a suggestion or example on how to add a vertical scrollbar (or
similar capability) to a web data grid in an ASP?
 
John,
Very nice.
Thanks,
Tim

John Oakes said:
Wrap your grid with:

<div style="OVERFLOW: auto; WIDTH: 350px; HEIGHT: 188px"></div>

Of course adjust the width and height as necessary.

-John Oakes



similar capability) to a web data grid in an ASP?
 
Yep,

But, you won't see the headertext when you scrolls trough the data... I
think it is better to create an extra sort of header, maybe a table or
something like that... place it above the div

grtz,
Henrik
 
Back
Top