I have two webasyncrefreshpanels in my page and there are 2 ultrawebgrids in each of the WARP.
I set the refresh interval to 1 minute(60000 milliseconds) .
The grids are displayed properly at the page load but after the refresh some of the grids' background,row color are changed to the color of header.
and one grid's header is repeated number of times.
Can someone help me with this
Thanks in advance
Hi,
If that happens only under IE. After async postback IE does not wait for possible resources and applies html instantly. It means that any css coming with resources will have priority and override any conflicting styles defined in html. If that is the case with your applicatio, then the best you can do is to avoid conflicting css settings (backgrounds, colors, borders, etc).For example, if background of header is defined in AppStyling css and your particular grid sets different background as Style property, then on initial load IE will use Style-background, because it will be rendered in aspx after css <link>, but after async postback IE will load <link> after html and background in that <link> will override Style-background.That IE-feature can not be fixed by WARP or grid.