[Home] [By Thread] [By Date] [Recent Entries]
> I tried things like:
>
> <xsl:template match="input-field">
...
> <xsl:apply-templates select="//missing-field[@name={name}]">
You can't use curly braces inside an XPath expression. You need:
<xsl:apply-templates select="//missing-field[@name=current()/@name]">
Mike Kay
Software AG
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



