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..??



> [Kevin Duffey]
> Subject: [xsl] How to populate a HTML <select>
> tag..??
> <select name="<xsl:value-of select='.'/>"
> size="1"><option value="<xsl:value-of
> select='.'/>"></select>

It's easy to forget that XSLT is XML (and not a scripted substition language
like Active Server Pages), and any XSLT script needs to obey the rules of
well-formed XML.

You can either use the {} syntax for evaluating expressions in attributes:

	<select name="{.}" size="1">

Or you can use the xsl:attribute element:

	<OPTION>
		<xsl:attribute name="value">
			<xsl:value-of select="." />
		</xsl:attribute>
		Option text goes here.
	</OPTION>

If you really do want a "<" in an attribute (or as part of an expression),
then it needs to be escaped (&lt;).

	- Paul


 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]