Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
Ultrawebgrid Slow IE8/IE9, (Assign cell id dynamically)
posted

 

We are working on older version 2006.3, The problem is in a large grid (> 700 rows, 10 columns) with one checkbox column, when we select the check box it takes considerable time to mark that checkbox as select. (20-30 seconds), when we did research we found that it assigns id to cell and thus appending HTML text which takes time. Following is the code line in javascript that requires too much time...

tr.cells[j].id = cellId.join(

 

"_");

When i go thru this forum user-component provides one solution for this... calling InitializeGridIds() function in grid init.... but it also take considerable amount for time at grid loading... once grid is loaded everything works fine... it increases grid load time from 10 seconds to 3 mins... which is again a problem.

Is there any other work around?

is there any way we can assign cell id from server side? or is there any property of grid that tells grid to load with cell id.?

Thanks in advance...