|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] computing an attribut value (newbie's question)
Hi there all,
maybe someone can help me on that issue.
Consider I have the following XSLT statement:
<xsl:if test="./@type='bitmap'">
<IMG .... src="mybitmaps/test/mmmmm.jpg"></IMG>
<xsl:if>
>From my understanding it writes an node (the IMG-Node element) to the
output tree, when the condition comes true in the xsl:if statement.
Fine. No problem. But the src - attribute's value has to be computed
depending on a value in my xml-file, say ./color="xxx". Actually mmmmm
has to be computed to say mmmmmRED.
As far as I tried, you can do that by writing
<xsl:if test="./@type='bitmap'">
<IMG .... src="mybitmaps/test/mmmmm{./@color}.jpg"></IMG>
<xsl:if>
Why does this work?
Can I use a variable for accomplishing the job like
<xsl:if test="./@type='bitmap'">
<xsl:if test="./@color="xxx">
<xsl:variable name="MyCol" select="yyy"/>
</xsl:if>
<!-- and now I want to use the variable in that src-statement -->
<IMG .... src="mybitmaps/test/mmmmm.jpg"></IMG>
<xsl:if>
Any help welcome. Thanks in advance.
Ciao,
- Chris
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








