Hello,
I have an editable ultrawebgrid where I update sums, key ratio etc in the grid as the user edit values. To do this I loop through the grid rows in JavaScript AfterExitEditMode. Now, the first time I edit a value in the grid it takes approximatly 33 sec for the script to run, and I loop through 25 rows. I have tracked the delay to this piece of code:
for (i = 0; i < rows.length; i++) { alert("2.0.1"); row = rows.getRow(i); alert("2.0.2");
As I said, rows.length is equal to 25 in this case. The first three rows runs fast, but then at row four something happens. For the last 22 rows it takes approximately 1.5 seconds between the two alerts, which expains the 33 seconds it takes for the script to run.
This happens the first time the script run after a postback. If I edit a value a second and a third time without reloading the page or cause a postback, it runs as fast as it should.
Any idea what the problem with getRow() is and what I can do about the annoying delay?
I have exactly the same problem in the version 9.2
Is somebody find something for solve it?
Thanks
We got the same issue here...
We tried on both versions 8.2 and 10.3...
The issue happens only on Internet Explorer 8 in our case...
Any ideas?