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]

<xsl:choose>


Hello, All:

I am trying to implement the <xsl:choose> logic into a file. What I am
hoping to achieve is that if default ='s "false" then it renders false.
If default ='s "true", then it renders true. And, if default ='s "", then
it renders null. 

My code, so far, is as follows:
========================================================
<ATTRIBUTE>
	<NAME>Default</NAME>
	<VALUE>
	<xsl:value-of select="@default"/>
		<xsl:variable name="default">
		<xsl:choose>
			<xsl:when test="@default">
				<xsl:value-of select="@default"/>
			</xsl:when>
			<xsl:otherwise>false</xsl:otherwise>
		</xsl:choose>
	</xsl:variable>
	</VALUE
</ATTRIBUTE>
=========================================================
Am I on the right track, here? What suggestions do you all have that
I should try instead?

Your help, as always, is greatly appreciated. Many thanks...

Eric


 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]