xsl-list
[Top] [All Lists]

RE: RE: [xsl]Local-Global Variable help

2006-08-30 05:19:15
Thx all, 
i make you an example for calrify what i need to do 
(put "<" instead of "(" ):

TEMPLATE 1:
(xsl:template match="fields[descendant::field[contains(@id, 'Metadata')]]")
(xsl:for-each select="field[contains(@id,'classMetadata')]")
(xsl:variable name="var" select="@value")
(/xsl:template)

TEMPLATE 2:
(xsl:template match="fields[descendant::field[utils:endsWith(@id, $var)]]")
 ecc
 ...
 
(/xsl:template)


so how you can see both my two templates match something but the second use the 
variable create in the first as argument of it's match i hope is possible with 
param doing something like this

thx for replies
 


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--