Hi
I've placed a HoverMenuExtender inside the grid, and its giving me javascript error at IE-6 that "Sys.Debug is null or not an object". At firefox its working fine. So could anyone help me out. Here is the code snippet
<radG:RadGrid ID="grdPhone" runat="server"
AutoGenerateColumns="false"
AllowAutomaticInserts="true"
AllowAutomaticDeletes="true"
AllowAutomaticUpdates="true"
AllowMultiRowSelection="true"
AllowPaging="false"
EnableAJAX="true"
EnableAJAXLoadingTemplate="true"
EnableOutsideScripts="true"
ShowHeader="true">
<MasterTableView DataKeyNames="ID">
<Columns>
<radG:GridTemplateColumn HeaderText="Main" DataField="IsPhone">
<ItemTemplate>
<asp:Panel ID="Panel1" runat="server">
<asp:CheckBox ID="chkMain" runat="server" Checked='<%# Eval("IsPhone") %>' Enabled="false"/>
</asp:Panel>
<cc1:HoverMenuExtender ID="HoverMenuExtender1" runat="server" TargetControlID="Panel1"
PopupControlID="PopupMenu" PopupPosition="Left" PopDelay="50" />
<asp:Panel ID="PopupMenu" runat="server">
<div style="border:1px outset white">
<asp:LinkButton ID="LinkButton1" runat="server" CommandName="Edit" Text="Edit" />
<br />
<asp:LinkButton ID="LinkButton2" runat="server" CommandName="Delete" Text="Delete" />
</div>
</asp:Panel>
</ItemTemplate>
</radG:GridTemplateColumn>
</Columns>
</MasterTableView>
<ClientSettings>
<Selecting AllowRowSelect="true" />
<ClientEvents OnRowMouseOver="RowMouseOver" />
</ClientSettings>
</radG:RadGrid>