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

RadMenu dropdowns not showinng

3 Answers 129 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Mike
Top achievements
Rank 1
Mike asked on 03 Nov 2015, 03:06 PM

I have an issue where the menu var we have is no longer showing the drop downs (see video) Any ideas why it wouldn't be showing?

 http://screencast.com/t/g2hlqXN8XET 

 

Below is the code for the menu

 

<telerik:RadMenu ID="RadMenuMaster" runat="server" Style="top: 0px; left: 0px; z-index: 2900"
                        OnClientItemOpened="itemOpened">
                        <Items>
                            <telerik:RadMenuItem runat="server" Text="New Cars &amp; Quotes" Width="160px" Owner="RadMenuMaster">
                            </telerik:RadMenuItem>
                            <telerik:RadMenuItem runat="server" Text="Vehicle Assistance" Width="160px" Owner="RadMenuMaster">
                            </telerik:RadMenuItem>
                            <telerik:RadMenuItem runat="server" Text="End Of Agreement" Width="160px" Owner="RadMenuMaster">
                            </telerik:RadMenuItem>
                            <telerik:RadMenuItem runat="server" Text="Driver Assistance" Width="160px">
                            </telerik:RadMenuItem>
                            <telerik:RadMenuItem runat="server" Text="Your Scheme" Width="160px" Owner="RadMenuMaster">
                            </telerik:RadMenuItem>
                            <telerik:RadMenuItem runat="server" Text="Contact Us" Width="157px" Owner="RadMenuMaster">
                            </telerik:RadMenuItem>
                        </Items>
                    </telerik:RadMenu>​

3 Answers, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 06 Nov 2015, 08:22 AM
Hello,

If your RadMenu is exactly as the one posted no dropdowns will be opened, because the root items do not contain any child items, so there is nothing to show in a dropdown. If there are child items under a root node, as shown below, a dropdown will be opened on click:
<telerik:RadMenuItem runat="server" Text="New Cars & Quotes" Width="160px" Owner="RadMenuMaster">
    <Items>
        <telerik:RadMenuItem Text="ChildItem1"></telerik:RadMenuItem>
        <telerik:RadMenuItem Text="ChildItem2"></telerik:RadMenuItem>
    </Items>
</telerik:RadMenuItem>

If you do have child nodes in your RadMenu (for example if you are populating them dynamically) then the issue is different. You could check the browser's developer tools for any js errors on the page, which may be preventing the dropdowns from opening.

Regards,
Ivan Danchev
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Mike
Top achievements
Rank 1
answered on 06 Nov 2015, 04:11 PM
I found the issues, disabling Browser Link corrected the issue. 
0
Ivan Danchev
Telerik team
answered on 11 Nov 2015, 09:53 AM
Hello,

I am glad you managed to find what was causing the issue and the Menu is working as expected.

Regards,
Ivan Danchev
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Menu
Asked by
Mike
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Mike
Top achievements
Rank 1
Share this question
or