table with scrollbar?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Brock

    table with scrollbar?

    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?
  • David Wier

    #2
    Re: table with scrollbar?

    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;ov erflow: scroll;">
    Put your table here and adjust size of div to your needs
    </div>

    David Wier

    http://iWritePro.com - One click PDF, convert .doc/.rtf/.txt to HTML with no
    bloated markup


    "Brock" <wade.brock@yah oo.comwrote in message
    news:864e642a-2111-4844-a2f8-05e5969079ee@c5 8g2000hsc.googl egroups.com...
    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?

    Comment

    • Brock

      #3
      Re: table with scrollbar?

      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.

      On Jul 11, 9:39 am, "David Wier" <d...@dw.comwro te:
      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;ov erflow: scroll;">
             Put your table here and adjust size of div to your needs
      </div>
      >
      David Wierhttp://aspnet101.comht tp://iWritePro.com- One click PDF, convert .doc/.rtf/.txt to HTML with no
      bloated markup
      >
      "Brock" <wade.br...@yah oo.comwrote in message
      >
      news:864e642a-2111-4844-a2f8-05e5969079ee@c5 8g2000hsc.googl egroups.com...
      >
      >
      >
      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?- Hide quoted text -
      >
      - Show quoted text -

      Comment

      Working...