vote up 0 vote down star
1

I am creating a large table dynamically using Javascript. I have realised the time taken to add a new row grows exponentially as the number of rows increase. I suspect the Page is getting refreshed in each loop per row (I am also adding input elements of type text on each cell)

Is there a way to stop the page "refreshing" until I am done with the whole table?

Any suggestion on how to do this or go around it?

flag

51% accept rate
Which browser do you use? Is it reproducible with other browsers? – gs Nov 24 '08 at 15:38
I use IE only. Not tried in others... – Jangwenyi Nov 25 '08 at 13:15

6 Answers

vote up 1 vote down

Maybe build your table as a big string of HTML, and then set the .innerHTML of a container div to that string when you've finished?

link|flag
vote up 3 vote down

You can create the table object without adding it to the document tree, add all the rows and then append the table object to the document tree.

var theTable = document.createElement("table");
// ... 
// add all the rows to theTable
// ...
document.body.appendChild(theTable);
link|flag
Actually I have tried this approach. It does not resolve. – Jangwenyi Nov 24 '08 at 15:21
Then the assumption that the delay is because of the page refresh could be wrong. I've seen that some people build a large string and set the html directly. It might not be a very clean approach but could be the best in terms of speed. – Aleris Nov 24 '08 at 16:18
Yes, my problem seems to be elsewhere - actually it is when looping through the table cells to populate them. I therefore agree the solution provided here works when creating an empty table. Please see my post further down. – Jangwenyi Nov 28 '08 at 12:54
vote up 0 vote down

Did you try the <tbody> tag when you create the table? It is possible browsers optimize that and don't "refresh" the table while populating it.

link|flag
vote up 0 vote down

If your cells sizes are the same for each row then you will be able to specify style table-layout:fixed - this will give you the greatest performance gain as the browser won't have to recalculate cells sizes each time a row is added

link|flag
vote up 0 vote down

I have tried all the suggestions above, but I am still getting the performance bottlenecks.

I tried to analyse line after line, and I have noted that document.getElementById() is one of the lines taking a lot of time to execute when the table is very large. I am using getElementById() to dynamically access an HTML input of type text loaded on each cell of the table.

Any ideas on which DOM method I should use instead of getElementById()?

link|flag
I have resolved this performance problem. I have used the Table DOM instead of document DOM and the speeds are um imaginably fast! Please see below – Jangwenyi Nov 28 '08 at 12:55
vote up 0 vote down

Use the table DOM to loop trough the rows and cells to populate them, instead of using document.getElementByID() to get each individual cell.

E.g.
thisTable = document.getElementByID('mytable');//get the table
oneRow = thisTable.rows[0].cells; //for instance the first row
for (var colCount = 0; colCount <totalCols; colCount ++)
{
   oneCell =oneRow[colCount];
   oneCell.childNodes[0].value = 'test';//if your cell contains an input element
   oneCell.innerHTML = 'test'; // simply write on the cell directly
}

Hope that helps someone else... Cheers.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.