Drupal 视图显示

发布于 2024-11-03 17:08:33 字数 230 浏览 2 评论 0原文

我有两种内容类型,称为网络作业和网络作业。我需要在页面中以选项卡形式显示此内容类型节点,例如选项卡中的网络作业和另一个选项卡中的网络作业以及标题、帖子和日期位置等常见字段。

为此,我尝试使用 drupal 中的视图模块,这以组合方式显示结果,因此不在单独的选项卡中显示。

我还尝试了视图选项卡模块,但没有得到预期的结果。

任何人都可以提供有关如何实现我想要的结果的线索吗?

提前致谢

I have two content types called web jobs and network job. I need to display this content type nodes in tabbed form in page like web jobs in tab and network job in another tab both common fields like title, post and date location.

For this I tried to use the views module in drupal,this shows results in a combined manner, so not in separate tab.

I also have tried the view tabs module without getting the expected result.

Could any body give a clue as how to achieve my desired result.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

归途 2024-11-10 17:08:33

每个视图可以有多个显示。第一个显示称为默认值。然后,您可以创建可以复制原始默认显示但可以更改的页面、块等。您可以为两种内容类型创建一个具有默认视图的视图,然后,您可以创建特定的显示:

  • 第一个 - 类型:页面,过滤器显示内容类型:仅 Web 作业
  • 第二个 - 类型:选项卡,过滤器显示内容类型:仅网络作业

实际上您不需要查看选项卡(一个单独的模块)。版本 6.x-2.x 中的视图很好地支持选项卡。 高级帮助中详细描述了选项卡配置。以下是可能对您有用的示例:

  • 在第一个视图中,将路径设置为“tabs/tab1”。将其设置为“默认选项卡”,将标题设置为“选项卡 1”,并将权重设置为 0。
  • 单击“更新”,您将进入一个可让您定义父级的表单。由于系统中尚不存在“选项卡”,因此选择“普通菜单项”,并将标题设置为“选项卡”。
  • 在第二个视图中,将路径设置为“tabs/tab2”;将其设置为“菜单选项卡”,并将标题设置为“选项卡 2”。

完成此操作后,您现在将拥有一个名为“选项卡”的导航链接,当您单击它时,您将转到选项卡,其中“选项卡 1”是显示的默认选项卡。然后,您可以在选项卡 1 和选项卡 2 之间单击。

Each view could have multiple displays. The first display is called Defaults. Then you can create pages, blocks, etc., that can copy the original Defaults display, but can be changed. You can create a view with default view for both content types and then, you can create particular displays:

  • first - type: page, filter showing content type: web jobs only
  • second - type: tab, filter showing content type: network jobs only

Actually you don't need View Tabs (a separate module). Views in version 6.x-2.x supports tabs well. The tabs configuration is well described in Advanced Help. Here is the example that could be useful for you:

  • In the first view, set the path to 'tabs/tab1'. Set it to be the 'default tab', set the title to 'Tab 1' and the weight to 0.
  • Click update and you will be taken to a form that lets you define the parent. Since 'tabs' doesn't already exist in the system, select 'Normal menu item', and set the title to 'Tabs'.
  • On the second view, set the path to 'tabs/tab2'; set it to be a 'Menu tab', and set the title to 'Tab 2'.

With this done, you will now have a Navigation link named 'Tabs' and when you click on it, you will go to the tabs, with 'Tab 1' being the default tab that appears. You can then click between Tab 1 and Tab 2.

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