[Home] [By Thread] [By Date] [Recent Entries]
Sean & Helen wrote:
<fo:block><xsl:value-of select="concat('FIELD_',$number)"/></fo:block>... However, the output gives me: FIELD_1 FIELD_2 FIELD_3 etc....
rather than the data contained within these nodes.
If you want the processor to select elements with a
constructed name, you have to tell this to the processor
the right way: select all elements, and restrict to elements
which have the name you want. Translated into XPath:
select="*[name()=concat('FIELD_',$number)]"I suspect there are ways to simplify your style sheet drastically. J.Pietschmann
|

Cart



