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: number . . .


> I mean, is there any way to do something like this:
> 
> <xsl:variable name="prueba"><xsl:number level="multiple"
> select="nodo[@accion=$url]"/></xsl:variable>
> 
Yes, you can do:

<xsl:variable name="prueba">
  <xsl:for-each select="nodo[@accion=$url]">
    <xsl:number level="multiple"/>
  </xsl:for-each>
</xsl:variable>

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]