Re: Large recordset = large whitespace???

2001-04-27 Thread Dave

using any custom tags? they may be introducing the white space.

- Original Message -
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, April 27, 2001 9:42 AM
Subject: Large recordset = large whitespace???



 I have a query that can return several thousand records. When I run a
query
 that only returns a small number ( lets say 15 or so, which is what I have
 seen), the page behaves fine, displays fine, etc. HOWEVER if I return a
 large number of records (1020, which is what I have seen), there is a huge
 amount of white space (like 2 page down's worth on a 1024 X 768
resolution)
 displayed before the table of results... in effect, making it look as if
 there was nothing returned, and all there is showing initially is the page
 header graphics. I've made sure everything that can be set to 0 is
 (margins, cellpadding, etc.) and that all the table elements are valigned
 to TOP... any other suggestions?

 Gina Shillitani



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Large recordset = large whitespace???

2001-04-27 Thread DeVoil, Nick

Have you got a p or br lurking around somewhere
in the table, not correctly enclosed in td/td and
tr/tr ?

Nick

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 27, 2001 2:43 PM
To: CF-Talk
Subject: Large recordset = large whitespace???



I have a query that can return several thousand records. When I run a query
that only returns a small number ( lets say 15 or so, which is what I have
seen), the page behaves fine, displays fine, etc. HOWEVER if I return a
large number of records (1020, which is what I have seen), there is a huge
amount of white space (like 2 page down's worth on a 1024 X 768 resolution)
displayed before the table of results... in effect, making it look as if
there was nothing returned, and all there is showing initially is the page
header graphics. I've made sure everything that can be set to 0 is
(margins, cellpadding, etc.) and that all the table elements are valigned
to TOP... any other suggestions?

Gina Shillitani
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Large recordset = large whitespace???

2001-04-27 Thread James Maltby

You could also try cfsetting enablecfoutputonly=Yes before your cfcode
and cfsetting enablecfoutputonly=no at the end if you are collating or
concatenating the results in anyway - or calling a custom tag, etc

J

-Original Message-
From: DeVoil, Nick [mailto:[EMAIL PROTECTED]]
Sent: 27 April 2001 15:12
To: CF-Talk
Subject: RE: Large recordset = large whitespace???


Have you got a p or br lurking around somewhere
in the table, not correctly enclosed in td/td and
tr/tr ?

Nick

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 27, 2001 2:43 PM
To: CF-Talk
Subject: Large recordset = large whitespace???



I have a query that can return several thousand records. When I run a query
that only returns a small number ( lets say 15 or so, which is what I have
seen), the page behaves fine, displays fine, etc. HOWEVER if I return a
large number of records (1020, which is what I have seen), there is a huge
amount of white space (like 2 page down's worth on a 1024 X 768 resolution)
displayed before the table of results... in effect, making it look as if
there was nothing returned, and all there is showing initially is the page
header graphics. I've made sure everything that can be set to 0 is
(margins, cellpadding, etc.) and that all the table elements are valigned
to TOP... any other suggestions?

Gina Shillitani
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Large recordset = large whitespace???

2001-04-27 Thread Jones, Matt

I believe that you are referring to the actual page output.  Whitespace is
the blank space that you would see on a view source.

Anyhow, I would imagine that you are displaying everything in a table that
has hidden form fields somewhere in it.  Hidden form fields take up a very
small amount of real estate on your page, but if these are all bunched
together, it can really screw up the expected output.  If your hidden form
fields are outside of tds, it places the resulting space prior to the table.

just like 
table
tr
tdA/td
tdB/td
C
/tr
/table

would place the C prior to the table

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 27, 2001 8:43 AM
To: CF-Talk
Subject: Large recordset = large whitespace???



I have a query that can return several thousand records. When I run a query
that only returns a small number ( lets say 15 or so, which is what I have
seen), the page behaves fine, displays fine, etc. HOWEVER if I return a
large number of records (1020, which is what I have seen), there is a huge
amount of white space (like 2 page down's worth on a 1024 X 768 resolution)
displayed before the table of results... in effect, making it look as if
there was nothing returned, and all there is showing initially is the page
header graphics. I've made sure everything that can be set to 0 is
(margins, cellpadding, etc.) and that all the table elements are valigned
to TOP... any other suggestions?

Gina Shillitani
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists