hi all, how can I call a template passing in a value that will be used as an attribute to a tag in that template, for example, something like
I want to invoke with something like (maybe its not possible) <xsl:call-template name="ROW_HEADER"> <xsl:with-param name="col" select="'Plan'"/> <xsl:with-param name="col_alignment" select="left"/> </xsl:call-template> <xsl:template name="ROW_HEADER"> <xsl:param name="col"/> <xsl:param name="col_alignment"/> <fo:table-row> <fo:table-cell> <fo:block font-weight="bold" text-align="$col_alignment"> <xsl:value-of select="$col"/> </fo:block> </fo:table-cell> </fo:table-row> </xsl:template> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]