|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] how to delete an attribute after using it as a test
<!-- ================== --> <!-- xml snip --> <!-- ================== --> <form_field label="First Name" hidden="true" name="fname" size="35" maxlength="35" /> <!-- ================== --> <!-- xsl snip --> <!-- ================== --> <xsl:template match="form_field"> <xsl:if test="@hidden = 'true'"> <xsl:element name="input"> <!-- ****************************************** ****************************************** ** HERE I WOULD LIKE TO COPY ALL ** ATTRIBUTES EXCEPT @hidden and @label ****************************************** ****************************************** --> <xsl:copy-of select="@*"/> <xsl:attribute name="type">hidden</xsl:attribute> </xsl:element> </xsl:if> </xsl:template> <!-- ================== --> <!-- desired output --> <!-- ================== --> <input name="fname" size="35" maxlength="35" /> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








