Scroll of the table seperatly without the head

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Scroll of the table seperatly without the head

    Hello,

    A part of the page is a tabel. When I scorl the page you wil mis all the heads
    of the table.

    I hope it is possible to scroll only the table without the head of the table?

    Thanxx

    Jan

    snuif12 Guest

  2. Similar Questions and Discussions

    1. Horizontal Scroll appears after 2nd Table inserted
      Hello there, I'm new to Dreamweaver, yet alone programming HTML, so please bare with me... I'm designing a website for a 1024 x 768...
    2. CSS Table and Scroll Problems
      Hello First thanks for your help. What I would like to do is as follow 1. I would like to create a 5 px all around padding inside certain...
    3. Scroll inside a table
      Okay this might be a simple question but I'm just simple web designer or what not. So I have a site layout made with a table. Say I have a cell...
    4. Scroll Row in Table into View?
      Check out this articles, this might help you. http://aspalliance.com/aldotnet/examples/dgautoscroll.aspx...
    5. Injecting code into the <head></head> section
      Hi All, I have a web user control that, among other things, provides Print this page, and Email this page functionality I have this script that...
  3. #2

    Default Re: Scroll of the table seperatly without the head

    Either put the table inside an iFrame.
    Or better still put it inside a div with overflow set to 'scroll'


    Ross Riley Guest

  4. #3

    Default Re: Scroll of the table seperatly without the head

    > Either put the table inside an iFrame.
    > Or better still put it inside a div with overflow set to 'scroll'
    Better yet, do it within the table itself:

    <table>
    <thead>
    put your header tags here
    </thead>
    <tbody style="overflow: scroll;">
    put your table data here
    </tbody>
    </table>

    -Darrel


    darrel Guest

  5. #4

    Default Re: Scroll of the table seperatly without the head

    It doesn't seeem to work in IE6, darrel.

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver MX
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]news://forums.macromedia.com/macromedia.dreamweaver[/url]
    THE BEST WAY TO GET ANSWERS
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================
    "darrel" <notreal@hotmail.com> wrote in message
    news:d4j28u$su6$1@forums.macromedia.com...
    >> Either put the table inside an iFrame.
    >> Or better still put it inside a div with overflow set to 'scroll'
    >
    > Better yet, do it within the table itself:
    >
    > <table>
    > <thead>
    > put your header tags here
    > </thead>
    > <tbody style="overflow: scroll;">
    > put your table data here
    > </tbody>
    > </table>
    >
    > -Darrel
    >
    >

    Murray *TMM* Guest

  6. #5

    Default Re: Scroll of the table seperatly without the head

    > It doesn't seeem to work in IE6, darrel.

    Why am I not surprised? ;o)

    -Darrel


    darrel Guest

  7. #6

    Default Re: Scroll of the table seperatly without the head

    hello,

    Ik just a beginner and dutch and I don't know what you mean. Pleas help!

    First
    "Either put the table inside an iFrame.
    Or better still put it inside a div with overflow set to 'scroll' "

    What is a div??

    Second:
    "Better yet, do it within the table itself:
    <table>
    <thead>
    put your header tags here
    </thead>
    <tbody style="overflow: scroll;">
    put your table data here
    </tbody>
    </table> "

    Can you explain why you put the "t" before all !!





    snuif12 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139