Hi,
I encountered a graphical bug when I use RadAjaxManager on a page in a site web (with using a Rad Menu).
In the page there's this code (VB) :
Protected Overrides Sub OnInit(ByVal e As System.EventArgs)
MyBase.OnInit(e)
Dim ajaxManager As RadAjaxManager = New RadAjaxManager()
ajaxManager.AjaxSettings.AddAjaxSetting(ddlPartner, ddlZone, Nothing)
Page.Form.Controls.AddAt(0, ajaxManager)
End Sub
And in the asp code :
<asp:Content ID="Content1" runat="server" ContentPlaceHolderID="filtersContent">
<asp:Panel runat="server" ID="pnl1">
<div id="center" style="left: auto">
<table>
<tr>
<td><asp:Label runat="server" AssociatedControlID="ddlPartner" Text="Partner: " /></td>
<td><asp:DropDownList runat="server" ID="ddlPartner" CssClass="normal" DataValueField="code" DataTextField="libelle" AutoPostBack="True" style="width:167px" /></td>
<td><asp:CheckBox runat="server" ID="chkbxAllPartners" ToolTip="All partners (active and inactive)" AutoPostBack="true" /></td>
<td><asp:Label runat="server" AssociatedControlID="ddlZone" Text="Zone: " /></td>
<td><asp:DropDownList runat="server" ID="ddlZone" CssClass="normal" DataValueField="code" DataTextField="libelle" /></td>
</tr>
</table>
</div>
</asp:Panel>
</asp:Content>
So, when I choose an item in the ddlPartner the menu disappear. I used the "IE Developer Toolbar" and saw that it was always on the page but behind the Master Page at the top/left position.
And when I resize the page it appeared.
Thanks.