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]
Other format: [Raw text]

Re: How to get the preceding-sibling of parameter context node[URGENT]


Hi Deep,

> //How to get the preceding-sibling of context node
> here following does not work
>
> <xsl:variable name="cnt"
> select="count(preceding-sibling::$contextnode[@name='data'])"/>

You need a location path that starts from the $contextnode:

  $contextnode

And then steps to its preceding sibling elements:

  $contextnode/preceding-sibling::*

I think you're testing the name attribute of the preceding siblings
when you're counting them, so you need:

<xsl:variable name="cnt"
  select="count($contextnode/preceding-sibling::*[@name='data'])"/>

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 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]