xsl-list
[Top] [All Lists]

RE: How to retrieve value(which is copied into RTF as a variable) from RTF

2005-01-04 06:34:19
$nameval is an attribute node called name, so in place of <xsl:value-of
select="."> you need <xsl:value-of select="@name"/>.

Remember that for debugging you can do

<xsl:message><xsl:copy-of select="$professionalLevel"/></xsl:message>

which would have immediately revealed what's going on here.

Michael Kay
http://www.saxonica.com/ 

-----Original Message-----
From: Ranjan K. Baisak [mailto:ranjanbaisak(_at_)yahoo(_dot_)com] 
Sent: 04 January 2005 13:20
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] How to retrieve value(which is copied into RTF 
as a variable) from RTF

I have a RTF with following declaration
<xsl:variable name="professionLevel"> 
              <xsl:for-each select="//profession">
                      <xsl:variable name="nameval" select="@name"/>
                      <xsl:variable name="parentval" 
select="@parent"/>
                      <xsl:for-each
select="exslt:node-set($leverreference)/*">
                              <xsl:variable name="referid" 
select="@levelref"/>
                              <xsl:if test="$referid=$parentval">
                                      <xsl:copy>
                                              <xsl:copy-of 
select="$nameval"/>
                                      </xsl:copy>
                              </xsl:if>
                      </xsl:for-each>
              </xsl:for-each>
      </xsl:variable>

Later I want to retrieve $nameval from professionLevel
RTF.
I tried with
<xsl:for-each
select="exslt:node-set($professionLevel)/*">
              <xsl:value-of select="."/>
      </xsl:for-each> 
but it did not work. 
Any suggestion?

regards,
Ranjan


              
__________________________________ 
Do you Yahoo!? 
Send holiday email and support a worthy cause. Do good. 
http://celebrity.mail.yahoo.com

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




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