On Fri, May 13, 2011 at 22:22, sglsboy <[email protected]> wrote: > I am coming across an issue where the browser hangs after I make a > ajax call that returns up to 100 rows to update a table.
Perhaps you're adding each of those rows one at a time to the table. That is very slow. If that's what you do, maybe you could try adding them to a document fragment first, and then add the document fragment to the table. Worth a try. -- Bertilo Wennergren [email protected] http://bertilow.com -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en.
