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]

Using preceding-sibling


I think I'm missing something when attempting to use preceding-sibling,
because it's not working for me.

My data is structure like so:

<!--********************************************** -->

<TOP>
  <RANDOM1>...</RANDOM1>
  <RANDOM2>...</RANDOM2>

  <PRODUCTS>
     <PRODUCT>
          <ID></ID>
          <NAME></NAME>
     </PRODUCT>

     <PRODUCT>
          ...
     </PRODUCT>
  </PRODUCTS>
</TOP>

<!--********************************************** -->

If I have an <xsl:template match="PRODUCT"> template element, how would
I go about writing out the value of the SKU for the preceding node?  I'm
trying to do something like this, but I'm coming up empty:

  <xsl:value-of select="preceding-sibling::SKU"/>



Any help would be greatly appreciated.......... TIA!

 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]