|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Parameter passing through call to "document"
William Scarvie wrote:
> <xsl:apply-templates select="document('Tasks.xml')">
> <xsl:with-param name="project_id" select="record_id_"/>
> </xsl:apply-templates>
> <xsl:template match="/tasks">
> <xsl:param name="project_id" select="'undefined'"/>
You apply templates on the root node (or document node in XPath 2.0),
not the root element. So the template rule matched is the default one,
that looks like this:
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
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>
Regards,
--drkm
___________________________________________________________________________
Nouveau : tiliphonez moins cher avec Yahoo! Messenger ! Dicouvez les tarifs exceptionnels pour appeler la France et l'international.
Tilichargez sur http://fr.messenger.yahoo.com
|
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
|

Cart








