如何在左侧菜单中显示主菜单的子项
我想建立一个有两个菜单的网站。第一个菜单将位于顶部窗格中,第二个菜单将位于左侧窗格中。
我正在寻找的是如何在左窗格中显示子项目。
例如,对于名称为“testPage”的页面,其中子菜单项为“testPageChild1”和“testPageChild2”,我希望在左侧窗格中显示这些子项。
我怎么能这样做呢?
如果有其他方法来实现类似的事情,请告诉我。
谢谢
I want to build a site with two menus. The first menu will be in the top pane and the second menu will be in the left pane.
What I am looking for is how to show the child items in the left pane.
For example, for a page with name "testPage" where it has as child menu items "testPageChild1" and "testPageChild2", I want in the left pane to display those child items.
How could I do this?
If there is another way to implement something like this, please let me know.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用菜单来完成此操作,也可以使用 notandy 指出的模块来完成此操作。 “控制台”模块也是一个选项,它将提供指向您指向的任何页面的子级的链接。
至于在皮肤内使用菜单进行操作,您需要调整导航控件的“级别”属性。
然后相应地设置样式
You can do this with your menu, or you can do it with a module as notandy points out. The "console" module is also an option, it will provide links to children of whatever page lyou point to.
As for doing it within the skin, using the Menu, you need to adjust the "Level" attribute of the Navigation control.
and then style accordingly
您需要的是一个子链接模块。您只需将其添加到左侧窗格,然后将其配置为显示当前页面的子页面。
我通常使用 Ventrian 的 http://www.ventrian.com/Products/Modules/ChildLinks.aspx 。
但还有许多其他可用,包括免费的 http://dnnmodules.cn/Modules/Childpagelistfree。 .aspx.
What you need is a child links module. You simply add it to the left pane and then configure it to show subpages of the current page.
I usually use Ventrian's http://www.ventrian.com/Products/Modules/ChildLinks.aspx.
But there are a number of others available, including a free one http://dnnmodules.cn/Modules/Childpagelistfree.aspx.
根据 http://www.dnnsoftware.com/wiki/ddrmenu-user-guide
我尝试将我的模块设置为
NodeSelector="RootChildren"
并且我成功了。according to http://www.dnnsoftware.com/wiki/ddrmenu-user-guide
i've tried to set my module to
NodeSelector="RootChildren"
and i worked.