How to create custom navigation menu in SharePoint with XML data source

Did you ever wanted to create completely custom menu in SharePoint and use some common way to manage the navigation nodes?

In this post I’ll show you how to build custom navigation with an XML file as a navigation source and treeview as display control.

image

And what is the benefit of this approach?

image 

Because navigation nodes are defined in XML file, nodes can be managed manually or retrieved automatically. XML file can be retrieved from anywhere or even constructed and manipulated by custom code. One of simpler approaches would be even to have data source available as XML web service.

 

image

Another benefit is XML structure. Structure below is just a sample. Structure can be more complex or completely different or contain a lot more information. It’s up to you to define which information is in element and what in attributes.

Maybe you even have an XML schema already defined somewhere and you just reuse it….

Create navigation source

Create sample xml file with nodes that should be displayed in navigation menu.

 <?xml version="1.0" encoding="utf-8" ?>
<Menu name="MyNavigation">
    <Folder name="Technical Links">
        <Node name="Microsoft" url="https://www.microsoft.com"></Node>
        <Node name="MSDN" url="https://www.msdn.com"></Node>
        <Node name="TechNet" url="https://technet.microsoft.com"></Node>
    </Folder>
    <Folder name="Links">
        <Node name="My Blog" url="https://blogs.msdn.com/matjazperpar"></Node>
        <Node name="Microsoft Slovenia" url="https://www.microsoft.com/slovenija"></Node>
    </Folder>
</Menu>

Save file as “MyNavSource.xml” on SharePoint. I used Pages library for this post.

Create blank aspx file

On SharePoint create a blank aspx file and save it as “NavigationPost.aspx”.

image 

Add SPXMLDatasource in NavigationPost.aspx

  • Click on a “Data Source Library”.
  • Under XML Files create new data source by clicking “Add an XML file…”
  • Point “Source” to XML file created at the beginning (MyNavSource.xml)

image

  • In Data Source Library click on MyNavSource.xml and then select “Insert Data Source Control

image

File NavigationPost.aspx should look like this:

image

Add TreeView control

  • Select Toolbox

image

  • Insert TreeView

image 

  • Click on TreeView and set Data Source to SPXmlDataSource1

image

  • File NavigationPost.aspx should now look like this:

image

  • In a browser is should look like this:

image

  • Because sample XML file uses attributes name and url edit the DataBindings for TreeView control

image

  • For node set binding as set on picture

image

  • Preview should look like this:

image

  • Autoformat the treeview if necessary…

image

image 

  • In SharePoint Designer click Format, Master Page, Attach Master Page

image

AspMenu?

It is also possible to use aspmenu control instead of Treeview. That would look like this:

image

Technorati Tags: MOSS 2007, Data source, SharePoint Designer, treeview