[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Default attribute values?


Subject: Re: [xsl] Default attribute values?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 14 Aug 2006 12:46:28 +0100

> <input type="text" value="{un|'Please enter your username'}" />

in xslt 2 you can do almost what  you suggest:

<input type="text" value="{(un,'Please enter your username')[1]}" />

You need to use , not | as | is a for union of node sequences, and a
string isn't a node but the new xpath2 , operator works with arbitrary
sequences.


in XSLT 1 (or 2) use

<input type="text" value="Please enter your username">
  <xsl:apply-templates seelct="un"/>
</input>

<xsl:template match="un">
 <xsl:attribute name="value"><xsl:value-of select="."/></xsl;attribute>
</xsl;template>

David


Current Thread
Keywords