视图批量操作和可拖动视图
我所处的情况是,我需要最终用户能够使用拖放来组织节点列表。为此,我通常可以使用可拖动视图。我还需要用户能够批量更新返回的节点。通常我会使用视图批量操作。无论如何,我可以同时使用这两个模块吗?我需要自己编写一些代码吗?或者你能想出另一种方式来实现我想要的功能吗?
- 内容进行排序
- 通过将内容的内联更新拖动到视图来对
I am in a situation where I need my end user to be able to organise a list of nodes using drag and drop. To do this I would normally be able to use Draggable Views. I also need the user to be able to bulk update the nodes returned. Normally I would use Views Bulk Operation. Is there anyway I can use both modules together? Would I need to code something myself or can you think of another way I can do what I want.
- Sortable Content by dragging
- In-line updating of content a view
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于它们都是样式插件,我怀疑您能否让它们在同一页面上工作。为同一视图创建单独的页面显示怎么样,每个页面都有自己的样式插件,每个页面都有自己的选项卡。一个选项卡可以是“更新”,另一个选项卡可以是“组织”。
Since they are both style plugins, I doubt you'll be able to get them to both work on the same page. What about creating separate page displays for the same view, each with its own style plugin and each with its own tab. One tab could be "Update" and the other "Organize".
我遇到了同样的问题,并在 Modle 站点 http://drupal.org/node/1222742
。我的解决方案正是上面建议的。为视图创建 2 种不同的显示,一种使用 VBO 进行更新,另一种用于组织。如果您知道或找到更好的解决方案,请发布并分享。
I had the same problem, and opened an issue at the Modle site http://drupal.org/node/1222742
. My Solution was exactly what has been suggested above. Creating 2 different displays for the view, one to update using VBO and the other to organize. If you know of or have found a better solution please post and share.