作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
再次提出 Plone 问题。
我安装了 Plone 4,我需要在顶部而不是底部显示文档操作图标。无法使其正常工作。有人可以帮忙吗。
最佳答案
如果您只需要移动那个 viewlet(具有相同的类和模板),首先您必须将具有相同类的 viewlet 注册到您想要的 viewletmanager(例如,plone.app.layout.viewlets。接口(interface).IAboveContentBody
):
<browser:viewlet
name="plone.abovecontenttitle.documentactions"
manager="plone.app.layout.viewlets.interfaces.IAboveContentBody"
class="plone.app.layout.viewlets.content.DocumentActionsViewlet"
permission="zope2.View"
/>
然后将其添加到您的 genericsetup 配置文件中(文件 viewlets.xml
):
<?xml version="1.0"?>
<object>
<order manager="plone.abovecontentbody" skinname="Plone Default">
<!-- this will place your viewlet before all the others.
you can also use a viewlet's name for a relative position -->
<viewlet name="plone.abovecontenttitle.documentactions" insert-before="*"/>
</order>
<hidden manager="plone.belowcontentbody" skinname="Plone Default">
<viewlet name="plone.abovecontenttitle.documentactions"/>
</hidden>
</object>
更多信息:
关于plone - 如何将 documentactions viewlet 从一个 viewletmanager 移动到另一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8230586/
再次提出 Plone 问题。 我安装了 Plone 4,我需要在顶部而不是底部显示文档操作图标。无法使其正常工作。有人可以帮忙吗。 最佳答案 如果您只需要移动那个 viewlet(具有相同的类和模板)
我是一名优秀的程序员,十分优秀!