xsl-list
[Top] [All Lists]

RE: passing NodeList through Global Parameter to XSL styles heet problem m

2003-04-29 12:49:36
Thank you for the quick reply Brian. However it still produces an empty
drop-down. Its almost as if it is not being able to find the elements in the
node set. Anyone else have any suggestions on what I may attempt.

Thanks,

John M Fernandes.

End

-----Original Message-----
From: Martinez, Brian [mailto:brian(_dot_)martinez(_at_)cendant(_dot_)com]
Sent: Tuesday, April 29, 2003 2:30 PM
To: 'xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com'
Subject: RE: [xsl] passing NodeList through Global Paramter to XSL
stylesh eet proble m 


From: Fernandes, John [mailto:jfernandes(_at_)thestar(_dot_)ca]
Sent: Tuesday, April 29, 2003 12:20 PM
Subject: [xsl] passing NodeList through Global Paramter to XSL
stylesheet proble m 

just so you know in the nodelist we have a root element 
called <employer>
with child elements called <option> and in each option some values.
<employer>
<option>1</option>
<option>2</option>
<option>3</option>
</employer> 

**** Attempt to produce a drop down list in XSL of the values 
from those
child elements.

<xsl:for-each select="$v_employer/option">
<xsl:value-of select="."/>
</xsl:for-each>

**** Nothing is showing up.

If that's literal code from your stylesheet, then it's not surprising you're
not getting the output you want.  You need to output the appropriate HTML
elements:

<select>
  <xsl:for-each select="$v_employer/option">
    <option value="{.}"><xsl:value-of select="."/></option>
  </xsl:for-each>
</select>

hth,
b.

| brian martinez                           
brian(_dot_)martinez(_at_)cendant(_dot_)com |
| lead gui programmer                                    303.708.7248 |
| cheap tickets, part of trip network                fax 303.790.9350 |
| 6436 s. racine cir.                             englewood, co 80111 |
| cendant travel distribution services   http://www.cheaptickets.com/ |

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

Get to know us
http://www.thestar.com - Canada's largest daily newspaper online
http://www.toronto.com - All you need to know about T.O.
http://www.workopolis.com - Canada's biggest job site
http://www.torontostartv.com - Webcasting & Production
http://www.newinhomes.com - Ontario's Largest New Home & Condo Website
http://www.waymoresports.com - Canada's most comprehensive sports site
http://www.tmgtv.ca - Torstar Media Group Television

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



<Prev in Thread] Current Thread [Next in Thread>
  • RE: passing NodeList through Global Parameter to XSL styles heet problem m, Fernandes, John <=