The panel for the pop up control flashes when the page loads in Firefox and IE, but not Chrome. This causes the popup to be visible for a brief moment when the page loads then it dissapears and works correctly
I've tried a few things but can't stop this flashing. I tried disabling it on page prerender but this stopped it from working completely.
Has anyone had the same issue? How did you fix it?
Thanks for the link.. I refined my search and found a solution.
In case anyone comes across this in the future: I fixed this with the css. I set visbility to hidden for the panel which worked. I also tried to set display to none but this broke the popup by preventing it's display.
Gaining competency by discovering my incompetencies.
newbie2C#
Member
694 Points
1179 Posts
pop up control flashes when loaded in FireFox & IE
Mar 17, 2012 08:59 AM|LINK
The panel for the pop up control flashes when the page loads in Firefox and IE, but not Chrome. This causes the popup to be visible for a brief moment when the page loads then it dissapears and works correctly
I've tried a few things but can't stop this flashing. I tried disabling it on page prerender but this stopped it from working completely.
Has anyone had the same issue? How did you fix it?
<asp:PopupControlExtender ID="PopupControlExtender1" runat="server" TargetControlID="image1" PopupControlID="Panel1" Position="Bottom" OffsetX="-35" OffsetY="-20" OnPreRender="PopUpControl_PreRender"></asp:PopupControlExtender> <asp:Panel ID="Panel1" runat="server" CssClass="popUp" > <span class="popUp_head"><b>Features:</b> </span> <ul id="vc_list" class="popUp_list"> <li>text</li> <li>text</li> <li>text</li> <li>text</li> <li>text</li> </ul> </asp:Panel>Ken Tucker
All-Star
16797 Points
2608 Posts
MVP
Re: pop up control flashes when loaded in FireFox & IE
Mar 17, 2012 10:39 AM|LINK
http://www.go4answers.com/Example/modalpopup-flashes-page-load-150773.aspx
Space Coast .Net User Group
newbie2C#
Member
694 Points
1179 Posts
Re: pop up control flashes when loaded in FireFox & IE
Mar 17, 2012 10:56 AM|LINK
Thanks for the link.. I refined my search and found a solution.
In case anyone comes across this in the future: I fixed this with the css. I set visbility to hidden for the panel which worked. I also tried to set display to none but this broke the popup by preventing it's display.