使用XDV向body元素添加类

时间:2011-07-06 16:40:20

标签: plone diazo xdv plone-3.x deliverance

我想在Plone3 + collective.xdv中设置一些表单的样式,但我不希望所有表单都获得特殊样式。

所以我想在显示某些模板时向styled-form元素的class属性添加一个特殊的body类名称:

  • 接触信息
  • sendto_form
  • PFG表格

所以我认为我可以设法用XDV执行此操作,以免修改这些模板。

通过在XDV规则中使用if-content指令,我可以检查是否显示了这些模板:

css:if-content="body.template-contact-info"
例如

但我找不到Plone提供的保持类属性的方法,而根据该条件添加特殊类

我想要的结果是:

<body class="template-contact-info styled-form">
    ...
</body>

提前致谢。

1 个答案:

答案 0 :(得分:3)

使用Diazo / plone.app.theming,您可以合并模板和内容中的属性,请参阅:http://diazo.org/basic.html#merge

如果您无法升级,那么您需要使用内联XSL执行此操作,例如:

<prepend theme="/html/body" css:if-content="body.template-contact-info"><xsl:attribute name="class"><xsl:value-of select="/html/body/@class"/> styled-form</xsl:attribute></prepend>

更新:我忘记了上面示例中的标记。它现在应该工作。