xsl-list
[Top] [All Lists]

Re: [xsl] Default attribute values?

2006-08-14 04:46:42

<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


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>