Table Extension

The current table model cannot (I believe) be easily shown progressively.
I have been thinking about this and have come up with the following
sollution, it's an extension and it should be possible to make it
compatible with the current implementation.

<TC> indicates a column, <TD> a cell.

<TABLE CELLPADDING="0" CELLSPACING="0">
    <TC>
        <TD>Name</TD>
        <TD>Age</TD>
        <TD>Prowess</TD>
    </TC>
    <TC>
        <TD>Thomas</TD>
        <TD>89</TD>
        <TD>Weak</TD>
    </TC>
</TABLE>

(note: no need for COLS or ROWS)

This way, the first column can be rendered to display at once, the
second can be rendered right afterwards. The whole table does not need
to be loaded completely before rendering.

What do you all think?

Thomas
--
The Rim (METW)                             http://www.cybercomm.nl/~tvg/
The Prancing Pony                          http://www.dra.nl/~ppinn/
Petrus Canisius College                    http://www.dra.nl/~pcc/

Received on Sunday, 7 July 1996 08:54:10 UTC