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: Positions


Hi Tanz,

><xsl:if test="./@lang='EN'">
>                     <xsl:value-of
>select="preceding-sibling::.[@name='number']"/>
>         </xsl:if>

The problem here is the . :preceding-sibling is already based on where you
currently are. Instead you need
"preceding-sibling::literal[@name='number']", or since you're using
value-of, "preceding-sibling::*[@name='number']". 

The first way gets you the first preceding sibling you want, the second way
gets all of them with 'number' but value-of will only treat the first one.

>Problem 1: I need the positions of "CUADRO" and "TABLEAU" to be reversed

Porqué - I mean, pourquoi? 

___
Tom Weissmann

 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]