xsl-list
[Top] [All Lists]

RE: Need to use generate-id() or other method?

2003-04-24 06:53:06
Kathy,

SOrry yar, if i have missed anything.
I feel you could associate generate-id() with the process_step element.
May be here you could associate the same with input element.
You could store the generate-id() in some variable and you could use
wherever applicable. Does this answer your question?

-----Original Message-----
From: Kathy Burke [mailto:Kathy_Burke(_at_)Jabil(_dot_)com]
Sent: Thursday, April 24, 2003 7:13 PM
To: 'xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com'
Subject: RE: [xsl] Need to use generate-id() or other method?


Thank you, Sundar, but what does the blah blah blah stand in for, for
example?

Another perhaps stupid question...how would I then refer to the @StartTime
and @EndTime for any given step not knowing what the generated id actually
is?

example:

input="button" name=StartTime
some code to update @StartTime for a specific step

Kathy


-----Original Message-----
From: Sundar Shanmugasundaram 
[mailto:SSHANMUGASUNDARAM(_at_)selectica(_dot_)com]
Sent: Thursday, April 24, 2003 12:52 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: RE: [xsl] Need to use generate-id() or other method?


Hi,

Please use 
<xsl:value-of select="generate-id()"/>
like this:

<process_step>
<xsl:attribute name="id">
<xsl:value-of select="generate-id()"/>
</xsl:attribute>
<xsl:attribute name="StartTime">
blah blah blah
</xsl:attribute>
<xsl:attribute name="EndTime">
blah blah blah
</xsl:attribute>
</process_step>

sundar

-----Original Message-----
From: Kathy Burke [mailto:Kathy_Burke(_at_)Jabil(_dot_)com]
Sent: Thursday, April 24, 2003 3:40 AM
To: 'xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com'
Subject: [xsl] Need to use generate-id() or other method?


I have an xml/html form using an xsl stylesheet to create a table for
<process_step> elements. Each <process_step> has a StartTime attribute and
EndTime attribute. There can, of course, be 10 or 50 steps for any given xml
instance.

My XSLT creates an html button for each StartTime and EndTime attribute for
each <process_step>.

Using VB or Javascript I want to add code to capture the system date/time
when the user clicks on the button(s) associated with that <process_step>.
I'm trying to figure out how to refer to each button correctly matching each
step (am I making any sense?).

XSL Question:  I've read about generate-id() though not yet fully
understanding it. How would I dynamically assign matching IDs to each
<process_step> and related attributes for capturing data when generating the
xml/html form from xslt?

Thanks,

Kathy


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list