17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1973 Views |
-
2 Level Menu Hierarchy

13 May 2008 at 2:17am
Hi.
I want to create a 2 level menu hierarchy in my template. My site structure is like this:
* Tutorials
+ Web Development
- PHP
- ASP
+ Desktop Development
- C#
- JavaAnd if I navigate to the Tutorials page. I want to show a menu Like This: (With Lists)
Web Development
* PHP
* Asp
Desktop Development
* C#
* JavaI tried it like this, but I only get a parse error:
<ul class="rightmenu_toplevel">
<% control Menu(2) %>
<li>$MenuTitle</li>
<ul class="rightmenu_secondlevel">
<% control ChildrenOf($Link) %>
<li><a href="$Link">$MenuTitle</a></li>
<% end_control %>
</ul>
<% end_control %>Error:
Parse error: syntax error, unexpected '}' in C:\srv\temp\silverstripe-cacheD--srv-cl\.cacheD..srv.cl.tutorial.templates.Page.ss on line 214Any ideas?
Greets Daniel
-
Re: 2 Level Menu Hierarchy

13 May 2008 at 5:47am
Hi,
I had some similar problems to this, but found they were fixed when I checked I had closed tags properly. For example in your code you have a "<ul class="rightmenu_toplevel"> " but no closing </ul> tag.
I hope this helps.
-
Re: 2 Level Menu Hierarchy

13 May 2008 at 1:37pm
use <% control Children %> instead of <% control ChildrenOf($Link) %>
| 1973 Views | ||
|
Page:
1
|
Go to Top |



