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: attribute question


> I am currently using Xalan\Xerces. I am trying to match an
> attribute. See
> below:
>
> <rendition>
>    <style color="#FFFFFF" border="#FFFFFF" ></style>
> </rendition>
>
> I am having difficulty matching the attribute. See below:
>
> <xsl:template match="@color>
>    <xsl:attribute name="color">
>       <!--Insert some value -->
>     </xsl:attribute>
> </xsl:template>
>
Are you doing an apply-templates that will select the attribute for
matching, e.g.

<xsl:apply-templates select="@*"/>

?

Mike Kay


 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]