static table headers

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

  1. #1

    Default static table headers

    hi:

    ASP/VBScript/Access

    being most of the time on the server-side i guess i'm not aware of the
    best approach, regarding compatibility/reliability, to set static table
    headers for a dinamic page (i'll code by hand, not using the Repeat
    Region behavior)

    searching i've found:

    1. the headers in a table & the rest of data in another table inside a
    <DIV ... overflow:scroll|auto>
    a) it seems not easy to match cells width in both tables
    b) the example i tested doesn't work at all in IE 5.2 Mac

    2. <TBODY>
    not IE compatible and shows horizontal scrollbar

    3. Frame/iFrame

    4. <OBJECT> tag ???

    4. Flash
    clean an easy but i'd prefer not dealing with loading huge amount of
    data in a Flash movie


    any advice?

    TIA,

    manuel
    Manuel Socarras Guest

  2. Similar Questions and Discussions

    1. CFDocument and repeating table headers
      I'm trying to output a multi-page report (essentially a large table) across multiple pages in PDF format. I know that the <cfdocumentitem> tag...
    2. Sort a repeat region in a table by clicking on the table headers
      Sort a repeat region in a table by clicking on the table headers for ASP some help on this topic pls.. Rgds MeTin
    3. Static Embedded SQL -- table change
      Hi, I am new to DB2, need help. I have an application using Static Embedded SQL with C. I need to change the db schema to satisfy new business...
    4. [PHP] Howto list Mysql Table Headers using PHP
      Whoops.. Missed that.. Thanks.. (& sorry..) Cheers, Mun Heng, Ow H/M Engineering Western Digital M'sia DID : 03-7870 5168
    5. Howto list Mysql Table Headers using PHP
      Hi, Got a quick question.. How do I get the table headers also printed/retrieved by PHP for 'echo'?? eg :...
  3. #2

    Default Re: static table headers

    > 2. <TBODY>
    > not IE compatible and shows horizontal scrollbar
    Well, there's the correct, semantic, standards-compliant way, and then
    there's the 'just make it work in IE' way. ;o)

    The TBODY should work, but if IE is the concern, then you're going to have
    to come up with some sort of workaround. NOt sure which of the options you
    mentioned would be best...I suppose it depends on your audience.

    -Darrel


    darrel Guest

  4. #3

    Default Re: static table headers

    sure, you're right. but you know, we have what we paid for ;-)

    manuel

    darrel wrote:
    >>2. <TBODY>
    >>not IE compatible and shows horizontal scrollbar
    >
    >
    > Well, there's the correct, semantic, standards-compliant way, and then
    > there's the 'just make it work in IE' way. ;o)
    >
    > The TBODY should work, but if IE is the concern, then you're going to have
    > to come up with some sort of workaround. NOt sure which of the options you
    > mentioned would be best...I suppose it depends on your audience.
    >
    > -Darrel
    >
    >
    Manuel Socarras Guest

  5. #4

    Default Re: static table headers

    i've been testing the <OBJECT> tag to embed a table in a cell and it
    works fine when the document is a static page. when i tried to include a
    dinamic page, only Safari shows the generated table fine. you can take a
    look at [url]http://projectes.esdi.es/msocarras/html/sh_obj.htm[/url]

    the only workaround that comes to my mind now, is to write dinamically a
    HTML file and point the data attribute to it

    any advise/suggestion?

    TIA,

    mnuel

    ....
    <TR>
    <TD width="300"><DIV align="center">
    <OBJECT data="list_open_jobs.asp?sec=0&cat=0" width="300" height="360">
    Warning: "list_open_jobs.asp" could not be embedded.
    </OBJECT></DIV>
    </TD>
    <TD width="300"><DIV align="center"><IMG src="images/listado.jpg"
    width="160" height="90"></DIV></TD>
    </TR>
    ....

    PC
    ==
    IE 5.0: Shows Warning text
    Mozilla 1.7.7: Shows nothing

    Mac
    ===
    NN 7.2: Shows nothing
    Firefox 1.0: Shows nothing
    Safari 1.2.4: OK!!!



    Manuel Socarras wrote:
    > hi:
    >
    > ASP/VBScript/Access
    >
    > being most of the time on the server-side i guess i'm not aware of the
    > best approach, regarding compatibility/reliability, to set static table
    > headers for a dinamic page (i'll code by hand, not using the Repeat
    > Region behavior)
    >
    > searching i've found:
    >
    > 1. the headers in a table & the rest of data in another table inside a
    > <DIV ... overflow:scroll|auto>
    > a) it seems not easy to match cells width in both tables
    > b) the example i tested doesn't work at all in IE 5.2 Mac
    >
    > 2. <TBODY>
    > not IE compatible and shows horizontal scrollbar
    >
    > 3. Frame/iFrame
    >
    > 4. <OBJECT> tag ???
    >
    > 4. Flash
    > clean an easy but i'd prefer not dealing with loading huge amount of
    > data in a Flash movie
    >
    >
    > any advice?
    >
    > TIA,
    >
    > manuel
    Manuel Socarras 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