Hallo,
ich habe folgenden Bereich in einer xsl Datei
Alles anzeigen
Mein Problem ist die if- Abfrage am Ende, die so nicht funktioniert.
Ich möchte erreichen, das die Zeile danach nur so ausgegeben wird, wenn in T.cornerRadius ein Wert größer Null stehet.
Wenn T.cornerRadius leer oder 0 ist, dann soll nur T.diameter ausgegeben werden.
Kann mir da jemand helfen?
ich habe folgenden Bereich in einer xsl Datei
Quellcode
- <xsl:for-each select="Job">
- <table width="100%" border="" hight ="100%" style="font:bold 12px Times New Roman;font-family:Times New Roman;font-size:12;">
- <tr style="font:bold 12px Times New Roman;font-family:Times New Roman;font-size:12;">
- <td style="padding-top:10px;font:12px Times New Roman;font-family:Times New Roman;font-size:12;">
- <table width="100%" style="font-size:12;font:bold 12px Times New Roman;font-family:Times New Roman;">
- <tbody style="font:bold 12px Times New Roman;font-family:Times New Roman;font-size:12;">
- <tr style="font:bold 12px Times New Roman;font-family:Times New Roman;font-size:12;">
- <td style="font-weight:bold;padding-top:1px;font:bold 12px Times New Roman;font-family:Times New Roman;font-size:12;">Werkzeug:</td>
- <td style="padding-top:10px;font:12px Times New Roman;font-family:Times New Roman;font-size:12;">
- <xsl:value-of select="@T.comment " xmlns:xsl="http://www.w3.org/1999/XSL/Transform" />
- </td>
- </tr>
- <tr style="font:bold 12px Times New Roman;font-family:Times New Roman;font-size:12;">
- <td style="font:bold 12px Times New Roman;font-family:Times New Roman;font-size:12;font-weight:bold;">Durchmesser:</td>
- <td style="font:12px Times New Roman;font-family:Times New Roman;font-size:12;">
- <xsl:if T= "cornerRadius >= 0">
- <xsl:value-of select="@T.diameter"/> R <xsl:value-of select="@T.cornerRadius"/>
- </xsl:if>
- </td>
- </tr>
Mein Problem ist die if- Abfrage am Ende, die so nicht funktioniert.
Ich möchte erreichen, das die Zeile danach nur so ausgegeben wird, wenn in T.cornerRadius ein Wert größer Null stehet.
Wenn T.cornerRadius leer oder 0 ist, dann soll nur T.diameter ausgegeben werden.
Kann mir da jemand helfen?