ExpandingMenus
Not to be confused with ExpandingMenu.
Question
How can I create a compact sidebar menu which expands to show sublevel items when clicking on first level items?
Answer
Make sure the skin you use can display first and second level list elements.
Build your Sidebar embracing selected list elements in an (:if group $Groupname :) ... (:if:)
conditional directive. These will be displayed only if the page belongs to the specified group. This is most useful to hide second level list elements when not in their group. The sidebar menu must be structured in groups, so that secondary elements point to pages in a group, and an intro page link appears at the top. That gives the effect of opening up the group links when clicked on the intro page link.
Example SideBar
*[[GroupOne/GroupOne]] (:if group GroupOne:) **[[GroupOne/Page1]] **[[GroupOne/Page2]] **[[GroupOne/Page3]] (:if:) *[[GroupTwo/GroupTwo]] (:if group GroupTwo:) **[[GroupTwo/Page4]] **[[GroupTwo/Page5]] **[[GroupTwo/Page6]] (:if:) *PmWiki (:if group PmWiki:) ** [[PmWiki/Installation | Download and Install]] ** [[PmWiki/Tips For Editing]] ** [[PmWiki/Documentation Index]] ** [[PmWiki/FAQ]] (:if:)
To avoid having each group edit the Main.SideBar you can expand on this idea and allow each group to have its own SideBar-Menu page conditionally included like this:
Example SideBar
*[[GroupOne]] (:if group GroupOne:)(:include {$Group}.SideBar-Menu:)(:if:) *[[GroupTwo]] (:if group GroupTwo:)(:include {$Group}.SideBar-Menu:)(:if:) *[[PmWiki]] (:if group PmWiki:)(:include {$Group}.SideBar-Menu:)(:if:)
Example Group.SideBar-Menu Note: You do not have to fully qualify the group pages.
**[[Page1]] **[[Page2]] **[[Page3]]
- This recipe was last tested on PmWiki version: 2beta26
- This recipe requires at least PmWiki version: 2
See also
Contributors
- HansB March 18, 2005, at 11:15 AM
- Martin Fick January 05, 2006, at 04:57 PM
Comments
See discussion at ExpandingMenus-Talk