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]
Other format: [Raw text]

RE: default attribute values?


Sorry but I didn't understand exacly what you want.

I guess that you might want something like this:
  <xsl:if test="@task or @args">
  <xsl:attribute name="href">?<xsl:value-of select="@task"/><xsl:if
test="@task and @args">&amp;</xsl:if><xsl:value-of select="@args"/>
  </xsl:attribute>
  </xsl:if>


-----Original Message-----
From: owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Michael
Sent: Friday, July 12, 2002 9:28 PM
To: xsl-list@lists.mulberrytech.com
Subject: RE: [xsl] default attribute values?


> you could use xsl:if's
> <input type='text' name='n' value='x'>
> <xsl:if test="@size"><xsl:attribute name="size"><xsl:value-of
> select="@size"/></xsl:attribute></xsl:if>
> <xsl:if test="@maxlength"><xsl:attribute name="maxlength"><xsl:value-of
> select="@maxlength"/></xsl:attribute></xsl:if>
> </input>

Great! Combined with the copy-of suggestion this cleans up my output a
lot. One last tricky spot I haven't worked out yet though. How would I
change this as to use your check? Can I edit the value-of somehow?

<a href="?task={@task}&amp;{@args}"/>


 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]