Hi,
Is it possible to check parameters against other parameters, as in:
<xsl:variable name="tableData ">
<xsl:apply-templates
select="general/data/rows/row/fvalues[$FIELD1=$FILTER 1][$FIELD2=$FILTER 2]"
mode="tableData " />
</xsl:variable>
(The parts I'm referring to are in capitals). Because this gives me no
output where I'm expecting 6 node elements. Is this because it's not
possible to use parameters this way or is it just me making some other
mistake in my Xpath? I hope the second is true so I don't have to come
up with another solution... Thanks! Sharon
Is it possible to check parameters against other parameters, as in:
<xsl:variable name="tableData ">
<xsl:apply-templates
select="general/data/rows/row/fvalues[$FIELD1=$FILTER 1][$FIELD2=$FILTER 2]"
mode="tableData " />
</xsl:variable>
(The parts I'm referring to are in capitals). Because this gives me no
output where I'm expecting 6 node elements. Is this because it's not
possible to use parameters this way or is it just me making some other
mistake in my Xpath? I hope the second is true so I don't have to come
up with another solution... Thanks! Sharon
Comment