Hi,
CellButtonDisplay = UltraWebGrid.CellButtonDisplay.Always
And the css:
.MyOrdersCopyCellIcon { border: none 0 transparent; padding: 0px; margin: 0px; background: transparent url(../images/copy.ico) no-repeat inherit center; }
Is there any way to avoid it ?
Thanks in advance
Bartek
Hello,
Page flickering ypically occurs due to a bug in browsers (IE mainly) with caching CSS background images. This has been a problem for quite a while, luckily recently a solution for it was found. Please, take a look at the following blog post for details:
http://evil.che.lu/2006/9/25/no-more-ie6-background-flicker
But generally, the solution is to place the following javascript line on top of your pages:
document.execCommand("BackgroundImageCache",false,true);
HTH,