I have created a new SharePoint web site, but I am having an issue getting the navigation to work as per the project requirements.
The client wants the navigation to show on the first level of navigation (side nav), then when you click on one of the links it will expose the next layer of navigation, but still show the previous layer. Once you click on another sub heading it exposes the next layer, but still displays the previous layers as well.
here's an example from another site of the general concept which we are looking for:
Here is the navigation provider I am using for my side nav in my page layout:
<PublishingNavigation:PortalSiteMapDataSource
ID="SiteMapDS"
runat="server"
EnableViewState="false"
SiteMapProvider="CurrentNavigation"
StartFromCurrentNode="true"
StartingNodeOffset="0"
ShowStartingNode="false"
TrimNonCurrentTypes="Heading"/>
<SharePoint:AspMenu
ID="CurrentNav"
EncodeTitle="false"
runat="server"
EnableViewState="false"
DataSourceID="SiteMapDS"
UseSeparateCSS="false"
UseSimpleRendering="true"
Orientation="Vertical"
StaticDisplayLevels="4"
MaximumDynamicDisplayLevels="0"
CssClass="s4-ql"
SkipLinkText="<%$Resources:cms,masterpages_skiplinktext%>"/>
Does anyone have any ideas where I can go from here?
Thanks!