17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 4699 Views |
-
making a nested menu..

27 March 2008 at 9:31am Last edited: 29 March 2008 3:44am
i'm building a site, and everything is working fine, just have this one little thing that bothers me...
I wan't to have a nested menu, but i can't get it to work the way i want it... currently it's allmost working... using this code:
<% control Menu(2) %>
<li><a href="$Link" title="Go to the "{$Title}" page" class="selected">$MenuTitle</a></li>
<% control Children %><ul>
<li><a href="$Link" title="Go to the "{$Title}" page" class="selected">$MenuTitle</a></li></ul>
<% end_control %><% end_control %>but this makes the children of menu 2 show up always... i wan't it to show the children only of the current page, is there a way of doing this.
the menu can be seen here : http://www.djd.dk
-
Re: making a nested menu..

29 March 2008 at 3:46am
anyone please... put a link to the site in my other post if you want to have a look at the menu.
-
Re: making a nested menu..

29 March 2008 at 8:13am Last edited: 29 March 2008 8:42am
<% control Menu(2) %>
<li><a href="$Link" title="Go to the "{$Title}" page" class="selected">$MenuTitle</a></li>
<% if isSection %>
<% control Children %><ul><li><a href="$Link" title="Go to the "{$Title}" page" class="selected">$MenuTitle</a></li></ul>
<% end_control %>
<% end_if %>
<% end_control %> -
Re: making a nested menu..

29 March 2008 at 9:55pm
isSection? Not sure that works. I know we have a inSection(). You can also check out how the default theme does it - I think it uses if LinkOrSection = section
Check out our docs for more info on these - http://doc.silverstripe.com/doku.php?id=built-in-page-controls
-
Re: making a nested menu..

30 March 2008 at 8:21am
LinkOrSection() uses isSection() (:
isSection() returns a bool, so no need for an extra check.
| 4699 Views | ||
|
Page:
1
|
Go to Top |


