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: finding position() of an element in a different context


Hi Kevin,

[...]
>     <forms>
>         <form visit="visit1Name" formtype="formtype1Name"/>
>         <form visit="visit1Name" formtype="formtype2Name"/>
>         <form visit="visit2Name" formtype="formtype2Name"/>
>     </forms>
> </top>
[...]
> I need to find the position of the matching form (based on the IDs)
> within all forms. I can select the matching form be doing:
>
>   <xsl:variable name="matchingForm"
>   select="//forms/form[(@formtypeID = $formtypeID) and (@visitID =
>   $visitID)]"/>
>
> But how do I find the position of that form within all <form>
> elements?

Just count the preceding siblings:
count($matchingForm/preceding-sibling::*)+1

Cheers,
Oliver


/-------------------------------------------------------------------\
|  ob|do        Dipl.Inf. Oliver Becker                             |
|  --+--        E-Mail: obecker@informatik.hu-berlin.de             |
|  op|qo        WWW:    http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/


 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]