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

RadMenu to show a multi level menu

1 Answer 117 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Stalin
Top achievements
Rank 1
Stalin asked on 15 Mar 2013, 05:38 PM
I have data upon below type ,

 public class MenuItem 
    { 
        public string Name { getset; } 
 
        public List<MenuItem> Items { getprivate set; } 
 
        public MenuItem() 
        { 
            this.Items = new List<MenuItem>(); 
        } 
    }

How can I bind to RadMenu to show a multi level menu ?

I want this in ASP.NET AJAX way.

1 Answer, 1 is accepted

Sort by
0
Boyan Dimitrov
Telerik team
answered on 20 Mar 2013, 10:50 AM
Hello,

I would recommend reviewing our help article that explains how you can data bind your RadMenu control to a object data source. This way you are able to use your custom business object as demonstrated in the provided sample code.


Regards,
Boyan Dimitrov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Menu
Asked by
Stalin
Top achievements
Rank 1
Answers by
Boyan Dimitrov
Telerik team
Share this question
or