Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
5
How to hide Root node with UltraWebMenu (SharePoint Designer)
posted

 Good day,

I'm currently trying to use 
UltraWebMenu as a substitute for the standard menus in SharePoint (in SharePoint Designer), but I have a little setback - I cannot hide the root Node from the SiteMap.
This is the code I'm using on my 
MasterPage:

<%@ Register Assembly="Infragistics35.WebUI.UltraWebNavigator.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"

Namespace="Infragistics.WebUI.UltraWebNavigator" TagPrefix="ignav" %>

// The menu

<ignav:UltraWebMenu ID="UltraWebMenu2" runat="server" DataSourceID="topSiteMap">

<ExpandEffects ShadowColor="LightGray">

</ExpandEffects>

</ignav:UltraWebMenu>

//The 
SiteMap

<asp:SiteMapDataSource

ShowStartingNode="False"

SiteMapProvider="SPNavigationProvider"

id="topSiteMap"

runat="server"

StartingNodeUrl="sid:1002"/>

As you can see I'm using ! 
ShowStartingNode="False" !, but it still doesn't work and the menu starts from the root (not from its children).

Any kind of help will be appreciated. Thanks in advance!