[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re[2]: Assigning node values

Subject: Re[2]: Assigning node values
From: Heiko Specht <heiko@xxxxxxxxxx>
Date: Mon, 30 Dec 2002 10:01:43 +0100
fp.xsl
Hello Frank,

this is not to complicated:

<xsl:for-each select="//bpr">
         <tr>
         <td>
             <font color="blue">
             <!-- make a variable -->
             <xsl:variable name="linkName" select="name"/>
             <a href="javascript:loadFrame('Control','bpr_control.htm','Error','bpr_error.htm')">
             <!-- define the attribute name of the link -->
             <xsl:attribute name="name">
                            <!-- use the declared variable -->
                            <xsl:value-of select="$linkName"/>
                            <!-- this is just to show making a
                            variable its not really needed here -->

             </xsl:attribute>
             <!-- end of definition -->
               <xsl:value-of select="name"/>
               </a>
               </font>
               </td>
          <td><xsl:value-of select="command"/></td>
          <td><xsl:value-of select="pid"/></td>
          </tr>
</xsl:for-each>


Monday, December 30, 2002, 8:35:45 AM, you wrote:

FP> I have the following code in an XSLT style sheet. A number of occurrences
FP> can be found of the node <bpr> so I need to know which hyperlink was clicked
FP> from the table. The identifier would be the name tag which is a child of the
FP> <bpr> tag. How can I assign the value of node name to the anchor tag of
FP> html.

FP> <xsl:for-each select="//bpr">
FP>         <tr>
FP>         <a href="javascript:loadFrame('Control',
FP> 'bpr_control.htm','Error','bpr_error.htm')" name=<xsl:value-of
select="name"/>> >
FP>                 <td><font color="blue"><xsl:value-of
select="name"/>></font></td></a>
FP>                 <td><xsl:value-of select="command"/></td>
FP>                 <td><xsl:value-of select="pid"/></td>
FP>         </tr>
FP> </xsl:for-each>


FP> I have tried with xsl:variable but it used the variable name literally
FP> instead of the contents of the variable. The name is a string.


FP> Regards
FP> Frank

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




-- 
Best regards,
 Heiko                            mailto:heiko@xxxxxxxxxx


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.