xsl-list
[Top] [All Lists]

RE: [xsl] Parameter passing through call to "document"

2006-03-18 08:10:40
Florent Georges wrote:
 You apply templates on the root node (or document node in XPath 2.0),
not the root element. So the template rule matching '/tasks' is applied, but its caller never pass it a parameter. Its caller is not your apply-template, but
the default template rule.

Try instead:

   <xsl:apply-templates select="document('Tasks.xml')/tasks">
     <xsl:with-param name="project_id" select="record_id_"/>
   </xsl:apply-templates>

Excellent!  This works beautifully.  Thank you very much Florent,

Will



--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>