如何在左侧菜单中显示主菜单的子项

发布于 2024-12-11 05:07:58 字数 226 浏览 0 评论 0原文

我想建立一个有两个菜单的网站。第一个菜单将位于顶部窗格中,第二个菜单将位于左侧窗格中。

我正在寻找的是如何在左窗格中显示子项目。

例如,对于名称为“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

茶色山野 2024-12-18 05:07:58

您可以使用菜单来完成此操作,也可以使用 notandy 指出的模块来完成此操作。 “控制台”模块也是一个选项,它将提供指向您指向的任何页面的子级的链接。

至于在皮肤内使用菜单进行操作,您需要调整导航控件的“级别”属性。

<%@ Register TagPrefix="dnn" TagName="NAV" Src="~/Admin/Skins/Nav.ascx" %>
<dnn:NAV id="TopLevel" runat="server" Level="Root" />
<dnn:NAV id="Child" runat="server" Level="Child" />

然后相应地设置样式

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.

<%@ Register TagPrefix="dnn" TagName="NAV" Src="~/Admin/Skins/Nav.ascx" %>
<dnn:NAV id="TopLevel" runat="server" Level="Root" />
<dnn:NAV id="Child" runat="server" Level="Child" />

and then style accordingly

想挽留 2024-12-18 05:07:58

您需要的是一个子链接模块。您只需将其添加到左侧窗格,然后将其配置为显示当前页面的子页面。
我通常使用 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.

如日中天 2024-12-18 05:07:58

根据 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文