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

SubItems Not Showing Up...

1 Answer 100 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Jonathan
Top achievements
Rank 1
Jonathan asked on 05 Jun 2008, 06:03 PM
I am using the RadMenu Prometheus control and the child items for the radmenu are not showing up.

I used the "Build RadMenu" on the Smart Tag in design view, removed it from my master page into it's own page, am using the RadScriptManager, and have everything as it should be. 

EDIT: Firebug is showing 3 errors...
Sys is not defined
Sys is not defined
Type is not defined

But yet, the child items still do not show on mouseover.  Code below:

<telerik:RadScriptManager ID="RadScriptManager1" runat="server"
        </telerik:RadScriptManager> 
        <telerik:RadMenu ID="RadMenu1" runat="server" Flow="Horizontal"  
            ClickToOpen="false" Skin="Black" > 
            <DefaultGroupSettings Flow="Vertical" ExpandDirection="Auto"></DefaultGroupSettings> 
            <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> 
            <Items> 
                <telerik:RadMenuItem runat="server" ExpandMode="ClientSide"  
                    Text="Root RadMenuItem1"
                    <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem runat="server" ExpandMode="ClientSide"  
                    Text="Root RadMenuItem2"
                    <Items> 
                        <telerik:RadMenuItem runat="server" ExpandMode="ClientSide"  
                            Text="Child RadMenuItem 1"
                            <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> 
                        </telerik:RadMenuItem> 
                        <telerik:RadMenuItem runat="server" ExpandMode="ClientSide"  
                            Text="Child RadMenuItem 2"
                            <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> 
                        </telerik:RadMenuItem> 
                    </Items> 
                    <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem runat="server" ExpandMode="ClientSide"  
                    Text="Root RadMenuItem3"
                    <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> 
                </telerik:RadMenuItem> 
                <telerik:RadMenuItem runat="server" ExpandMode="ClientSide"  
                    Text="Root RadMenuItem4"
                    <Items> 
                        <telerik:RadMenuItem runat="server" ExpandMode="ClientSide"  
                            Text="Child RadMenuItem 1"
                            <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> 
                        </telerik:RadMenuItem> 
                        <telerik:RadMenuItem runat="server" ExpandMode="ClientSide"  
                            Text="Child RadMenuItem 2"
                            <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> 
                        </telerik:RadMenuItem> 
                    </Items> 
                    <GroupSettings ExpandDirection="Auto" Flow="Vertical" /> 
                </telerik:RadMenuItem> 
            </Items> 
            <ExpandAnimation Type="OutQuart"></ExpandAnimation> 
        </telerik:RadMenu> 

1 Answer, 1 is accepted

Sort by
0
Paul
Telerik team
answered on 09 Jun 2008, 01:18 PM
Hi Jonathan,

The "Sys is indefined" error indicates problems with the configuration of ASP.NET Ajax. You can check our troubleshooting help topic:
http://www.telerik.com/help/aspnet-ajax/troubleshooting.html
Look for "Sys is undefined".

Regards,
Paul
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Menu
Asked by
Jonathan
Top achievements
Rank 1
Answers by
Paul
Telerik team
Share this question
or