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]

RE: How to populate a HTML <select> tag..??


hi,

you can use the <xsl:attribute> tag to build the attributes of an html
element:

<select>
	<xsl:attribute name="name"><xsl:value-of
select='.'/></xsl:attribute>
	<xsl:attribute name="size">1</xsl:attribute>
		
and so on..

Camilla


-----Original Message-----
From: Kevin Duffey [mailto:kevin.duffey@home.com]
Sent: 21 January 2001 10:05
To: XSL-List@lists.mulberrytech.com
Subject: [xsl] How to populate a HTML <select> tag..??


Hi all,

I am fairly new to XSL and am trying to figure this one out. I want to
transform xml into html, which I am able to do for the basic stuff. But,
when I want to do something like a select tag in html, how do I fill in such
tag attributes as value="", and so on using xsl? For example:

<select name="<xsl:value-of select='.'/>" size="1"><option
value="<xsl:value-of select='.'/>"></select>

My dilema is..how do I put xsl things inside the name=" " quotes, and so on
so that I can insert dynamic data from the xml input source?

Thanks.


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

 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]