[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: beginner problem with attlist
>There are 3 mode for pattern nodes operation in XSL: >Template Definition: > <xsl:template match="pattern"> ... </xsl:template> >Select Operation: > <xsl:apply-template select="pattern"/> > <xsl:for-each select="pattern" >Conditional Test: > <xsl:when/if test="pattern"> ... <xsl:when/if> Not quite. <xsl:apply-templates> and <xsl:for-each> take an XPath expression (not a pattern), which must return a node-set. <xsl:if> and <xsl:when> take an XPath expression (not a pattern), which is converted to a boolean. XSLT patterns are used only in <xsl:template>, <xsl:key>, and <xsl:number>. Mike Kay 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
|