我正在尝试为xml发布者创建一个rtf模板。在我的表中列出了一些不同的组。我想为每个组提供特殊的背景颜色。颜色信息将来自带有“GROUP_COLOR”标记的xml。
通常,此代码在我的模板中完美运行:
<xsl:attribute xdofo:ctx="block" name="background-color">#FF420E</xsl:attribute>
当尝试从xml获取颜色值时,如下所示给出了错误:
<xsl:attribute xdofo:ctx="block" name="background-color"><?GROUP_COLOR?></xsl:attribute>
我如何克服这个问题?
答案 0 :(得分:0)
我找到如下解决方案:
<xsl:attribute xdofo:ctx="block" name="background-color">
<xsl:value-of select="GROUP_COLOR"/>
</xsl:attribute>