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 can I bend generate-id()?


Thanks for your quick reply. About five minutes after I posted the message,
the answer came to me. My solution was identical to yours except for
the acutal appended constants. You'll see it posted here.

-- 
Charles Knell
cknell@onebox.com - email


---- "Hunsberger, Peter" <Peter.Hunsberger@stjude.org> wrote:
> >Is there some way in which I could "bend" generate-id() so as to produce
> >two or more unique id's from the same context node? 
> 
> Since the id will be unique for each invocation of the template why
> not just
> append a constant to each generate?  IE:
> 
> Here is the template and the output:
> template
> ===================================================
> <xsl:template match="node">
>   <xsl:param name="depth" select="0" />
>   <xsl:param name="tabSize" select="1" />
>   <div id="{generate-id()}_1" drag="enable"
> style="position:relative;left:{$tabSize
> * $depth}px;">
>     <xsl:variable name="level">
>       <xsl:value-of select="$depth + 1" />
>     </xsl:variable>
>     <xsl:if test="$depth != 0">
>       <img src="{$bulletURL}" id="{generate-id()}_2" />
>     </xsl:if>
>     <textarea id="{generate-id()}_3" class="editableNode" onfocus="Sink()"
> onblur="Sink()">
>       <xsl:value-of select="normalize-space(text()[position()=1])"
> />
>      

 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]