This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: sort


> <!-- now convert that to a node-set and step through it -->
> 
>      <xsl:for-each select="xt:node-set($fns)">*
>        <xsl:value-of select="child::*/text()"/> <br />
>      </xsl:for-each>
>    </xsl:template>
> 
> this is giving me zilch output

The node-set() function returns a node-set containing a single node, the
root of the result tree fragment. You want to select the children of this
node.

Mike Kay


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]