2017-10-16 102 views
0

我正在嘗試爲xml發佈者創建一個rtf模板。在我的表格中列出了一些不同的組。我想給每組提供特殊的背景顏色。顏色信息將來自xml和'GROUP_COLOR'標籤。RTF模板屬性動態值

通常這個代碼完全在我的模板:

<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

我找到的解決方案如下圖所示:

<xsl:attribute xdofo:ctx="block" name="background-color"> 
    <xsl:value-of select="GROUP_COLOR"/> 
</xsl:attribute>