使用视图 2 (Drupal 6) 按节点参考字段对节点进行排序
Drupal 6.20,视图 6.x-2.12。
我有一个列出 A 类型节点的视图,每个节点都有一个节点引用字段 mynoderef_field。我可以显示 A.title 和 A.mynoderef_field,但它们是随机显示的。我想按 A.mynoderef_field 对节点进行排序,但它不会显示为可能的“排序依据”字段。
我用谷歌搜索了一段时间,没有找到答案。有什么想法吗?
谢谢
Drupal 6.20, Views 6.x-2.12.
I have a view listing nodes of type A, each one having a Node reference field mynoderef_field. I can show A.title and A.mynoderef_field, but they show up randomly. I want to order the nodes by A.mynoderef_field, but it does not appear as a possible "Order by" field.
I googled for a while, and couldn't find the answer. Any idea?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以解决问题:
this should do the trick:
我通过使用节点 A 和 mynoderef_field 之间的关系来实现此目的。添加节点标题以排序条件并确保选择关系。
I got this to work by using a relationship between the node A and mynoderef_field. Add node title to sort criteria and make sure the relationship is selected.