HELP ! HoverMenuExtender in updatepanel doesn't work in safari, chrome

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • eebee
    New Member
    • May 2009
    • 2

    HELP ! HoverMenuExtender in updatepanel doesn't work in safari, chrome

    Hi,

    I've been trying for a few hours now, but cannot resolve this:

    In IE7 it works, but not in :

    I'm using a HoverMenuExtend er in a Listview.
    As soon as I'm using an updatepanel, the popup doesn't shows anymore in safari or goggle chrome, it still works in IE7.
    Without the updatepanel it works fine in all 3 browsers.

    VS 2008 - VB.net - AjaxControlTool kit-3.5SP1

    Here's my code:

    Code:
        <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager" runat="server">
        </asp:ScriptManager>
        <asp:UpdatePanel runat="server">
        <ContentTemplate>
    
    
                    <asp:ListView 
                        ID="LV_UsrWebsites" 
                        runat="server"                     
                        DataKeyNames="PublicationID"                                         
                        OnItemCommand = "UserWebsites_Command" >               
    
                        <LayoutTemplate>
                            <asp:PlaceHolder ID="itemPlaceholder" runat="server"></asp:PlaceHolder>
                        </LayoutTemplate>
    
                        <ItemTemplate>
    
                            <cc1:HoverMenuExtender ID="HoverMenuExtender1" runat="server"
                                        TargetControlID="icoSiteInfo"
                                        PopupControlID="bubbleInfo"
                                        PopupPosition="Top"                          
                                        >
                            </cc1:HoverMenuExtender>
                                              
                                    <asp:Panel ID="bubbleInfo" runat="server" CssClass="bubblePanel" >
                                    <div class="bubbleImage" >
                                    <div class="bubbleTextPositionSize">
                                    <asp:Label runat="server" ID="Publicationdescr" Text='<%# Eval("PublicationDescr") %>' CssClass="bubbleText"></asp:Label>
                                    </div>
                                    </div>
                                    </asp:Panel>            
    
                            <div class="gridItems">
     
                            </asp:Label><asp:CheckBox runat="server" Checked='<%# Eval("ProcessNow") %>' ID="chkSelectWebsite" CssClass="gridText" Width="32px"/>
                            <asp:hyperlink runat="server" ID="LnkSiteName" Text='<%# Eval("SiteName") %>'  NavigateUrl='<%# Eval("SiteName") %>' CssClass="gridTextLink" Width="205px" ></asp:hyperlink>
                            <asp:Label runat="server" ID="CreationDate" Text='<%# FormatGridDate(Eval("CreationDate")) %>' CssClass="gridText" Width="68px" ></asp:Label>
                            <asp:Label runat="server" ID="ModifDate" Text='<%# FormatGridDate(Eval("ModifiedDate")) %>' CssClass="gridText" Width="75px" ></asp:Label>                        
                            <asp:Image runat="server" ID="icoSiteInfo" ImageUrl="~/Assets/Graphix/InfoIcon.png"  />                                                
                            <asp:Label runat="server" ID="Status" Text='<%# Eval("SubscriptionStatus") %>' CssClass="gridText" Width="60px" ></asp:Label>
                            </div>
                        </ItemTemplate>
                        <EmptyDataTemplate>
                            <div class="gridItems">  
                            <asp:Label runat="server" ID="NoData" Text="&nbsp &nbsp no websites linked to this address..." CssClass="gridText" Font-italic="true" ></asp:Label>
                            </div>                   
                        </EmptyDataTemplate>            
                    </asp:ListView>
    
    </ContentTemplate>
    </asp:UpdatePanel>
    
    
        </form>
    </body>
    </html>
    Can anyone help me with this ?

    thanks in advance,

    eeBee
    Last edited by Frinavale; May 6 '09, 08:45 PM. Reason: Added code tags. Please post code in [code] [/code] tags.
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Well the first thing I noticed is that your UpdatePanel does not have an ID.
    Maybe this is causing the problem?

    Comment

    • eebee
      New Member
      • May 2009
      • 2

      #3
      Thanks Friavale,

      But no, didn't made a difference. still no popup in safari and chrome...

      Comment

      Working...