A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.
I'm using the following for my sub-navigation:
<portal:PageMenu id="PageMenu1" runat="server" UseTreeView="true" TreeViewShowExpandCollapse="false" TreeViewExpandDepth=1 />
It initially it shows the 1st and 2nd levels. If you click on a 2nd level it shows the 3rd level for that item. (All of this is good). But, when you click on the 3rd level item the menu goes back to showing just the initial view, 1st and 2nd levels. I would like for the view to remain the same so you can continue to see the 3rd level of nav when at a 3rd level.
Thanks for any help.
Tim
You might try setting the expand depth a little higher and then hiding any extra levels from CSS like this:
div.AspNet-TreeView ul li ul li ul li ul { display:none; }
Hope that helps,
Joe
Hmm, that doesn't really solve my issue. Yes, that will keep the 3rd level visible, but it's also visible when you're at the first level.
I just don't understand why the menu would essentially revert when getting to the third level.
try setting TreeViewPopulateOnDemand="false" and see if that helps.
Best,
That did the trick! I was able to keep TreeViewExpandDepth=1, all works perfectly.
Thanks, Joe!
PS - We have 3 sites in development using Mojo, and this is our first use of Mojo (hence I keep asking questions). I'll be sure to send them to you when they have launched. We've also decided to buy you a beer everytime one of our Mojo sites goes live. ;P