Adding headers to the bottom of a table

Started by Robert Treatalmost 23 years ago6 messagesdocs
Jump to latest
#1Robert Treat
xzilla@users.sourceforge.net

page in question:
http://developer.postgresql.org/docs/postgres/sql-keywords-appendix.html#KEYWORDS-TABLE
(aka doc/src/sgml/keywords.sgml)

I'd like to add column "headers" to the *bottom* of the sql keywords
table, but I can't simply add a duplicate <thead> at the bottom. Is
there a way to accomplish this? Would people be against the idea?

Robert Treat
--
Build A Brighter Lamp :: Linux Apache {middleware} PostgreSQL

#2Peter Eisentraut
peter_e@gmx.net
In reply to: Robert Treat (#1)
Re: Adding headers to the bottom of a table

Robert Treat writes:

I'd like to add column "headers" to the *bottom* of the sql keywords
table, but I can't simply add a duplicate <thead> at the bottom. Is
there a way to accomplish this? Would people be against the idea?

It would be <tfoot[er?]>, but maybe this should be solved through
stylesheets?

--
Peter Eisentraut peter_e@gmx.net

#3Robert Treat
xzilla@users.sourceforge.net
In reply to: Peter Eisentraut (#2)
Re: Adding headers to the bottom of a table

On Mon, 2003-06-30 at 17:40, Peter Eisentraut wrote:

Robert Treat writes:

I'd like to add column "headers" to the *bottom* of the sql keywords
table, but I can't simply add a duplicate <thead> at the bottom. Is
there a way to accomplish this? Would people be against the idea?

It would be <tfoot[er?]>, but maybe this should be solved through
stylesheets?

That was kind of my wondering, since upon further reflection I think I'd
might want to see the "labels" every 20 rows or something. This is
really handy with html versions, but I don't know about other formats.

--
Build A Brighter Lamp :: Linux Apache {middleware} PostgreSQL

#4Peter Eisentraut
peter_e@gmx.net
In reply to: Robert Treat (#3)
Re: Adding headers to the bottom of a table

Robert Treat writes:

That was kind of my wondering, since upon further reflection I think I'd
might want to see the "labels" every 20 rows or something. This is
really handy with html versions, but I don't know about other formats.

On a paged medium (e.g., paper), a new header is already added on every
new page, so this problem seems to be specific to HTML. Take a look at
the stylesheets if you like, but table processing is very hairy.

--
Peter Eisentraut peter_e@gmx.net

#5Bruno Wolff III
bruno@wolff.to
In reply to: Peter Eisentraut (#4)
Re: Adding headers to the bottom of a table

On Tue, Jul 01, 2003 at 12:52:21 +0200,
Peter Eisentraut <peter_e@gmx.net> wrote:

Robert Treat writes:

That was kind of my wondering, since upon further reflection I think I'd
might want to see the "labels" every 20 rows or something. This is
really handy with html versions, but I don't know about other formats.

On a paged medium (e.g., paper), a new header is already added on every
new page, so this problem seems to be specific to HTML. Take a look at
the stylesheets if you like, but table processing is very hairy.

I think there is a way to make the body of the table scrollable
while the headers stay in place using a stylesheet.

#6Arguile
arguile@lucentstudios.com
In reply to: Bruno Wolff III (#5)
Re: Adding headers to the bottom of a table

On Tue, 2003-07-01 at 08:49, Bruno Wolff III wrote:

On Tue, Jul 01, 2003 at 12:52:21 +0200,
Peter Eisentraut <peter_e@gmx.net> wrote:

Robert Treat writes:

That was kind of my wondering, since upon further reflection I think I'd
might want to see the "labels" every 20 rows or something. This is
really handy with html versions, but I don't know about other formats.

On a paged medium (e.g., paper), a new header is already added on every
new page, so this problem seems to be specific to HTML. Take a look at
the stylesheets if you like, but table processing is very hairy.

I think there is a way to make the body of the table scrollable
while the headers stay in place using a stylesheet.

There is but cross-browser compatability is horrid. Mozilla handles it
okay, some properly ignore it if they don't know how to handle it, but
the various version of IE are pretty buggy with it.

Using the various (non-JS) tricks to hide CSS from the various browsers
can make it workable. The overall effect isn't the greatest though.

If anyone wants to see a sample of such scrolling I'll provide one soon
as I can resolve the developer.postgresql.org site again ;).