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?


> 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]