This is a migrated thread and some comments may be shown as answers.

RadMenu Disappear with AJAX

1 Answer 77 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Dipsa Shah
Top achievements
Rank 1
Dipsa Shah asked on 23 Sep 2009, 03:21 PM
Hi,

http://www.atlantictoyotany.com/new-cars-compare.aspx

When you select vehicles to compare, the menu tabs dissappear.
This happens in IE when you compare all 4 vehicles.

Here, Menu and Vehicle compare are two different user control on Master page.
for Vehicle compare : 

<asp:UpdatePanel ID="UpdatePanel3" runat="server">
    <ContentTemplate>
        <table width="100%" id="divVehicleInfo" runat="server" visible="false">
            <tr>
                <td align="center">
                    <asp:Button ID="btnRemove" runat="server" Text="Remove" OnClick="btnRemove_Click" />
                </td>
            </tr>
            <tr>
                <td valign="top">
                    <table width="245px" border="0" cellspacing="0" cellpadding="0">
                        <tr>
                            <td align="center">
                                <div style="text-align: center">
                                    <asp:Image ID="imgInfo" CssClass="imgInfo" runat="server" />
                                </div>
                            </td>
                        </tr>
                        <tr>
                            <td class="LabelsValProp">
                                <asp:Label ID="lblInfoYearMakeModelValue" CssClass="lblInfoYearValue" runat="server"></asp:Label>
                            </td>
                        </tr>
                        <tr style="height: 28px;">
                            <td class="LabelsValProp">
                                <asp:Label ID="lblInfoTrimValue" CssClass="lblInfoTrimValue" runat="server"></asp:Label>
                            </td>
                        </tr>
                        <tr class="LabelsValProp">
                            <td>
                                <asp:Label ID="lblInfoPrice" CssClass="lblInfoPrice" runat="server" Text=""></asp:Label>
                            </td>
                        </tr>
                        <tr class="LabelsValProp">
                            <td>
                                <asp:Label ID="lblInfoSpecialPrice" CssClass="lblInfoSpecialPrice" runat="server"
                                    Text=""></asp:Label>
                            </td>
                        </tr>
                        <tr>
                            <td width="100%" align="center">
                                <div id="divMPG" runat="server">
                                    <table width="70%" cellspacing="0" cellpadding="0">
                                        <tr class="divMPG">
                                            <td>
                                                <asp:Label ID="lblCityMPG" runat="server"></asp:Label>
                                            </td>
                                            <td>
                                                <br />
                                                <asp:Image ID="imgMPG" runat="server" ImageUrl="~/Images/gaspump.gif" Width="24"
                                                    Height="35" />
                                            </td>
                                            <td>
                                                <asp:Label ID="lblHighwayMPG" runat="server"></asp:Label>
                                            </td>
                                        </tr>
                                    </table>
                                </div>
                            </td>
                        </tr>
                        <tr>
                            <td class="LabelsValProp">
                                <br />
                                <asp:Label ID="lblInfoEngineValue" CssClass="lblInfoEngineValue" runat="server"></asp:Label>
                            </td>
                        </tr>
                        <tr>
                            <td class="LabelsValProp">
                                <asp:Label ID="lblInfoTransValue" CssClass="lblInfoTransValue" runat="server"></asp:Label>
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
            <tr>
                <td>
                    &nbsp;
                </td>
            </tr>
            <tr>
                <td align="center">
                    <asp:ImageButton ID="btnMoreInfo" runat="server" CssClass="btnMoreInfo" ImageUrl="~/Images/Inventory/SmallButtons/btn_moreinfo_off.gif"
                        OnClick="btnMoreInfo_Click" onmouseover="this.src = 'Images/Inventory/SmallButtons/btn_moreinfo_on.gif'"
                        onmouseout="this.src = 'Images/Inventory/SmallButtons/btn_moreinfo_off.gif'" /><br />
                    <asp:ImageButton ID="btnMakeOffer" runat="server" CssClass="btnMoreInfo" ImageUrl="~/Images/Inventory/SmallButtons/btn_makeoffer_off.gif"
                        OnClick="btnMakeOffer_Click" onmouseover="this.src = 'Images/Inventory/SmallButtons/btn_makeoffer_on.gif'"
                        onmouseout="this.src = 'Images/Inventory/SmallButtons/btn_makeoffer_off.gif'" /><br />
                    <asp:ImageButton ID="btnTestDrive" runat="server" CssClass="btnMoreInfo" ImageUrl="~/Images/Inventory/SmallButtons/btn_testdrive_off.gif"
                        OnClick="btnTestDrive_Click" onmouseover="this.src = 'Images/Inventory/SmallButtons/btn_testdrive_on.gif'"
                        onmouseout="this.src = 'Images/Inventory/SmallButtons/btn_testdrive_off.gif'" />
                </td>
            </tr>
            <tr>
                <td>
                    &nbsp;
                </td>
            </tr>
            <tr id="divOtherOptions" runat="server">
                <td>
                    <fieldset>
                        <legend>Vehicle Info</legend>
                        <div id="divAllOtherOptions" runat="server">
                        </div>
                    </fieldset>
                </td>
            </tr>
        </table>
    </ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanel ID="UpdatePanel4" runat="server">
    <ContentTemplate>
        <table id="divShowCompareAnother" runat="server" visible="false">
            <tr>
                <td valign="top">
                    <asp:Label ID="Label1" runat="server" Text="Compare Another"></asp:Label><br />
                    <asp:DropDownList ID="ddlYear" CssClass="ddlYear" runat="server" AutoPostBack="true"
                        OnSelectedIndexChanged="ddlYear_SelectedIndexChanged">
                    </asp:DropDownList>
                    <br />
                    <asp:DropDownList ID="ddlMake" CssClass="ddlMake" runat="server" AutoPostBack="true"
                        OnSelectedIndexChanged="ddlMake_SelectedIndexChanged">
                    </asp:DropDownList>
                    <br />
                    <asp:DropDownList ID="ddlModel" CssClass="ddlModel" runat="server" Width="200px"
                        AutoPostBack="true" OnSelectedIndexChanged="ddlModel_SelectedIndexChanged">
                    </asp:DropDownList>
                    <asp:DropDownList ID="ddlTrim" CssClass="ddlTrim" runat="server" Width="200px" AutoPostBack="true"
                        OnSelectedIndexChanged="ddlTrim_SelectedIndexChanged">
                    </asp:DropDownList>
                    <br />
                    <asp:Button ID="btnCompare" runat="server" Text="Compare" OnClick="btnCompare_Click" /><br />
                    <asp:Label ID="lblNoVehicleFound" runat="server" Text=""></asp:Label>
                </td>
            </tr>
        </table>
    </ContentTemplate>
</asp:UpdatePanel>

This is the code for Vehicle User control. If I dont Use this AJAX (update panel) at that time It works fine. But with AJAx it's not working.

Can you please help me in that ?

Thanks
Dipsa.






1 Answer, 1 is accepted

Sort by
0
Kamen Bundev
Telerik team
answered on 24 Sep 2009, 08:22 AM
Hi Dipsa,

I can't seem to reproduce your issue in IE7 and IE8 on the website you provided. Can you specify the Internet explorer and OS version you're using?

Best wishes,
Kamen Bundev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Menu
Asked by
Dipsa Shah
Top achievements
Rank 1
Answers by
Kamen Bundev
Telerik team
Share this question
or