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

[Solved] why dosnt display submenu Items

3 Answers 133 Views
Menu
This is a migrated thread and some comments may be shown as answers.
mohammad hadi fayyaz
Top achievements
Rank 1
mohammad hadi fayyaz asked on 28 Feb 2010, 06:56 AM
Hello All
I Install and use RadComponents I use RadMenu and configure step by step with help description bat when I run the web site menu and root Items display correctly but no sub menu display by clicking mouse
please help me
thanks

3 Answers, 1 is accepted

Sort by
0
Schlurk
Top achievements
Rank 2
answered on 01 Mar 2010, 04:03 PM
What is the markup for your RadMenu? What properties etc. have you set? Also, does this behavior run across multiple browsers or only particular ones?
0
mohammad hadi fayyaz
Top achievements
Rank 1
answered on 02 Mar 2010, 05:50 AM
Dear Friend
Thank you  for your attention an reply
as you want to know i say what I have done step by step.
1- I Download "RadControls_for_ASP.NET_AJAX_2009_3_1314_trial" Trial version from Telerik Site and install it (I work with ASP.Net )
2- I try to test it step by step using help document as below
- Put a RadMenu on WebPage in Visual Studio (ASP.Net WebSite Project in Disine mode)
- Smart Tag automatically appear  and I add items Using Build RadMenu item op Smart Tag
- I add 3 items that first Item have 2 sub menu Items
- as write to help document I defined 1 sub menu item for second root item and clear its text and I Set Iseparator Property to true
- I chose a skin for menu
- I set ClocktoOpen Property to true
3- I add an Ajax ScriptManager Component to Page
4- I run the project ; menu appear but by clicking on its item no sub menu show
my default internet explorer is IE7 but I test it on another computer by Firefox browser but it work as same as my computers browser

is tis behavior because of trial version ?
Please Help me
0
Schlurk
Top achievements
Rank 2
answered on 02 Mar 2010, 04:16 PM
I followed your steps and ended up with the following ASPX markup:

<telerik:RadMenu ID="RadMenu1" runat="server" Skin="Forest" ClickToOpen="true"
        <Items> 
            <telerik:RadMenuItem runat="server" Text="Root RadMenuItem1"
                <Items> 
                    <telerik:RadMenuItem runat="server" Text="Child RadMenuItem 1"
                    </telerik:RadMenuItem> 
                    <telerik:RadMenuItem runat="server" Text="Child RadMenuItem 2"
                    </telerik:RadMenuItem> 
                </Items> 
            </telerik:RadMenuItem> 
            <telerik:RadMenuItem runat="server" Text="Root RadMenuItem2"
                <Items> 
                    <telerik:RadMenuItem runat="server" IsSeparator="True"
                    </telerik:RadMenuItem> 
                </Items> 
            </telerik:RadMenuItem> 
            <telerik:RadMenuItem runat="server" Text="Root RadMenuItem3"
            </telerik:RadMenuItem> 
        </Items> 
    </telerik:RadMenu> 

When I click on the first item this does open the menu item and show the two sub-items while the second menu item only shows a small little green area (since there's no text in the item).



Tags
Menu
Asked by
mohammad hadi fayyaz
Top achievements
Rank 1
Answers by
Schlurk
Top achievements
Rank 2
mohammad hadi fayyaz
Top achievements
Rank 1
Share this question
or