fixthebug2003
Programmer
Hi,
I have a very complicated javascript page, that has say 20 rows and may be 30 columns..the thing is the rows and the columns count can change dynamically..I build it using the data comming from the XML.
Now Populating the data is fine...but the problem is , I have these checkboxes for each row and column, which the user can check or uncheck it and there is this One Check box that lets you check/uncheck all the checkboxes in all the rows and columns at one shot.
So when the user checks this "Select All" check box I have to loop through all the checkboxes in the rows and columns and either check or uncheck it...and that becomes very slow..it takes around 5-6 seconds to check/uncheck all the checkboxes...!
Is there a way to increase the speed of execution of the script?
Fixthebug2003
I have a very complicated javascript page, that has say 20 rows and may be 30 columns..the thing is the rows and the columns count can change dynamically..I build it using the data comming from the XML.
Now Populating the data is fine...but the problem is , I have these checkboxes for each row and column, which the user can check or uncheck it and there is this One Check box that lets you check/uncheck all the checkboxes in all the rows and columns at one shot.
So when the user checks this "Select All" check box I have to loop through all the checkboxes in the rows and columns and either check or uncheck it...and that becomes very slow..it takes around 5-6 seconds to check/uncheck all the checkboxes...!
Is there a way to increase the speed of execution of the script?
Fixthebug2003