Long Pause/Load times within Internet Explorer v8 in...

To all:

I have strange scenario that is occuring within Windows 7 and Windows 2008 using Internet Explorer v8, but not within Windows XP Internet Explorer v8. Now within Firefox on Windows 7 it also takes 2 seconds for the report to appear. These tmies are within my companies network and on a shared DSL line - so pretty compariable.

When calling a report that contains 19 columns 60 rows, within Windows 7 and Windows 2008 it takes 8-10 seconds to display the report, but within Windows XP or Firefox, its 2 seconds.

Any help is greatly appreciated and i have listed my JS call below.

Try to change following code:

if (navigator.userAgent.indexOf("Firefox")!=-1) { mygrid.enableSmartRendering(true); }

with

if (!_isFF) { mygrid.enableSmartRendering(true); }

and move this code before mygrid.init();

Actually, do not enable Smart Rendering in all browsers?

If i do not have this option enabled, both firefox and internet explorer will run even slower. So i have it enabled for both FF and IE.

Instead of

if (navigator.userAgent.indexOf("Firefox")!=-1) { mygrid.enableSmartRendering(true); }

You can just use:

mygrid.enableSmartRendering(true);