> Hey, maybe someone can help me with this advanced topic. I'm doing client > side sorting of tables with dates, numbers, and text and it was working > dandy on my test tables but then I tried to do a big fat one. > Like 600 rows > and 10 entries per row and it slooooowwwws down like bad!! > Anybody done this > and have any tips on speeding it up? DRE
After you sort your table rows are you regenerating each table cell? Slap some alerts before and after your sort, and then before and after your code that generates the page output and I think you may find the slowdown isn't the sort, but outputting all that data. 600 rows x x10 cells = 6000 bits of data. Create a routine which will make 600 TR rows and stuff them into an object or array. You can then sort, and just output the rows in a certain order without regenerating the whole dataset every time. -Cameron ----------------- Cameron Childress Sumo Consulting Inc. --- cell: 678-637-5072 aim: cameroncf email: [EMAIL PROTECTED] > -----Original Message----- > From: Andre Turrettini [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 21, 2002 9:52 AM > To: CF-Talk > Subject: Client side sorting SLOOWWWWW!! HELP! > > > Hey, maybe someone can help me with this advanced topic. I'm doing client > side sorting of tables with dates, numbers, and text and it was working > dandy on my test tables but then I tried to do a big fat one. > Like 600 rows > and 10 entries per row and it slooooowwwws down like bad!! > Anybody done this > and have any tips on speeding it up? DRE > ______________________________________________________________________ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

