Re: Browser taking too much time in rendering the table data on screen

2007-02-06 Thread hussain shaikh
I have tried setting fixed width for each column but the issue is since the length of the data in it varies the width is also varying according to it. So irrespective of the width of the cell, the table is adjusting the width to fit in the data becoz of which the tables are not aligning properly.

Re: Browser taking too much time in rendering the table data on screen

2007-02-06 Thread Dave Ferguson
Using cfflush still does not solve the issue. IE will not render the table till it has the whole table. I have gotten around this problem before by breaking up a large table into multiple smaller tables. You will have to set the width of all columns so everything lines up but it should work.

Re: Browser taking too much time in rendering the table data on screen

2007-02-06 Thread Mik Muller
Hussain, The problem is IE won't display a table until all content is in. FF will load the table as the data arrives. To get past this problem try putting this at the top of the page in question: Michael From the docs: Usage The first occurrence of this tag on a page sends back the HT

Re: Browser taking too much time in rendering the table data on screen

2007-02-06 Thread Claude Schneegans
>>I tried creating table for each row so that the data is displayed as it fetches it but here the problem is aligning successive tables. You could declare fixed width for each cell. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/cus

Browser taking too much time in rendering the table data on screen

2007-02-06 Thread hussain shaikh
I am working on a coldfusion page in which I am displaying the Query result on the screen in a table.But before displaying the data in the cells I am performing some checks on it.So by the time the browser displays the 100 records on the screen it eats up lot of time. I tried creating table for