xsl-list
[Top] [All Lists]

RE: Match first non-empty from different fragments

2005-01-20 08:31:17
Hi,

There are man z:row elements node with attribute value pairs. 
 So like this:

<z:row name_of_meet="Funtastic" date_of_meet="10/10/2005"/>

Currently, I would ask the question (assuming above is current node).
(in plain english)
If name_of_meet is empty, then find the parent record name_of_event.

What's the context node? Provided it's results, then e.g. 

  name: <xsl:value-of 
select="(result//rs:data/z:row/@name_of_event[string(.)])[last()]"/>

provided event result always precedes meet result.

Cheers,

Jarno

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--