vote up 3 vote down star

Hello, I'm trying to optimize a sortable table I've written. The bottleneck is in the dom manipulation. I'm currently creating new table rows and inserting them every time I sort the table. I'm wondering if I might be able to speed things up by simple rearranging the rows, not recreating the nodes. For this to make a significant difference, dom node rearranging would have to be a lot snappier than node creating. Is this the case? thanks, -Morgan

flag

57% accept rate
How many rows are there in the table you're sorting? – Jon Cram Feb 16 at 18:44
hundreds, not thousands – morgancodes Feb 16 at 18:56
I'm not going to post this as an answer as it will get downvoted for not answering your question, but have you seen the tablesort plugin for jQuery? - tablesorter.com/docs/example-pager.html – Russ Cam Feb 16 at 19:42
yeah, it would have been smarter to use either that or data tables, but I went ahead and built my own before it occurred to me that this wheel had already been invented. May be just as well though, as I think I'm going to need to do a lot customization. – morgancodes Feb 16 at 22:05

3 Answers

vote up 1 vote down

I don't know whether creating or manipulating is faster, but I do know that it'll be faster if you manipulate the entire table when it's not on the page and then place it on all at once. Along those lines, it'll probably be slower to re-arrange the existing rows in place unless the whole table is removed from the DOM first.

This page suggests that it'd be fastest to clone the current table, manipulate it as you wish, then replace the table on the DOM.

link|flag
oh. interesting. Thanks. – morgancodes Feb 16 at 19:05
vote up 0 vote down

You may find this page handy for some benchmarks:

http://www.quirksmode.org/dom/innerhtml.html

link|flag
vote up 0 vote down

I'm drawing this table about twice as quickly now, using innerHTML, building the entire contents as a string, rather than inserting nodes one-by-by.

link|flag
wow, actually, that technique makes it much worse in IE6. – morgancodes Feb 16 at 22:09
Instead of string = string + newstring, use an array: var a=[]; while(loop){ a.push(newstring) } result = a.join(""); // String concatenation in IE is terrible slow. I did a test once where Opera finished in about 4 seconds, and IE still hadn't finished after 20 minutes. – some Feb 17 at 0:24
Yeah, I came across that too, but with what I'm doing, it seems that it's still faster to add dom nodes than use innerHTML in IE6. – morgancodes Feb 17 at 14:22

Your Answer

Get an OpenID
or

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