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

How to setup RadMenu as footer "sitemap" menu

2 Answers 51 Views
Menu
This is a migrated thread and some comments may be shown as answers.
James@Nw
Top achievements
Rank 2
James@Nw asked on 24 Jul 2009, 02:45 PM
Hi Guys,

I would like to setup my RadMenu (used in DNN) as a sitemap menu in the footer of my site, the same way as you guys have done in the footer of this page.

I have my menu stretching horizontally, but I have two problems:

  1. The submenu items slide upwards.
  2. I don't want it to slide at all but to have the submenu items static the way you have yours below.

Thanks,
James

2 Answers, 1 is accepted

Sort by
0
James@Nw
Top achievements
Rank 2
answered on 28 Jul 2009, 09:04 AM
Any word on this please guys?

Thanks
0
Georgi
Telerik team
answered on 28 Jul 2009, 02:42 PM
Hello James,

This is a custom control which is working the Sitefinity API to take the pages names.
Please take a look at this example:
 // create a new instance of CmsManager 
Telerik.Cms.CmsManager cmsManager = new Telerik.Cms.CmsManager(); 
// get all pages 
IList allPages = cmsManager.GetPages(); 
// write out the number of pages 
Response.Write(allPages.Count.ToString());  
 
foreach (IPage in allPages) 
//do something with the IPage object, 
//for example display the name 

You can split the pages in paragraph for example, on every 5 pages. You can even check if the page is a group page, so you could make its menu name in bold (just an example).

Let me know if you need any further help.

Greetings,
Georgi
the Telerik team

Instantly find answers to your questions on the newTelerik Support Portal.
Check out the tipsfor optimizing your support resource searches.
Tags
Menu
Asked by
James@Nw
Top achievements
Rank 2
Answers by
James@Nw
Top achievements
Rank 2
Georgi
Telerik team
Share this question
or