[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Applying templates within a variable
> <xsl:template match="test1"> > <xsl:variable name="var1"> > <xsl:call-template name="foo"/> <!-- output copied properly --> > <xsl:value-of select="test2"/> <!-- output copied properly --> > <xsl:apply-templates/> <!-- has no effect !!???? --> > </xsl:variable> > <xsl:call-template name="fontstyle"> > <xsl:with-param name="param1" select="$var1"/> > </xsl:call-template> > </xsl:template> As Mike said, the code is OK. So the questions are: 1) what does your processor provide by way of a default template for elements; 2) are you explicitly giving templates to match the children that are not being processed within the variable?; 3) is the variable being instantiated in a context where it has no children (if 'test2' is really being processed, then the answer to that is no); 4) what happens if you explicitly select the elements to process with, say, xsl:apply-templates select="*"? Steve XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|