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:
Can anyone help me with this ?
thanks in advance,
eeBee
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="    no websites linked to this address..." CssClass="gridText" Font-italic="true" ></asp:Label>
</div>
</EmptyDataTemplate>
</asp:ListView>
</ContentTemplate>
</asp:UpdatePanel>
</form>
</body>
</html>
thanks in advance,
eeBee
Comment