xsl-list
[Top] [All Lists]

Re: [xsl] Create xml file with recursive childnodes

2008-08-13 21:50:54
On 8/14/08, Mukul Gandhi <gandhi(_dot_)mukul(_at_)gmail(_dot_)com> wrote:
<xsl:variable name="startName" select="distinct-values($start/@name)" />

This could also be replaced with,
<xsl:variable name="startName" select="$start[1]/@name" />

The rest of the stylesheet remains same ...

-- 
Regards,
Mukul Gandhi

--~------------------------------------------------------------------
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>
--~--