Hello.

Christian Barth a écrit :
> I want to do something like the first one.
> 
> <table>
>   <tbody>
>     <xsl:for-each select="*">
>       <xsl:when test="local-name() = 'abweichungen'">
>         <tr>
>           <th>Achtung Abweichungen:</th><th></th>
>         </tr>
>       </xsl:when>
>       <xsl:otherwise>
>         <tr>
>           <td><xsl:value-of select="local-name()" /></td><td><xsl:value-of
> select="."/></td>
>         </tr>
>       </xsl:otherwise>
>     </xsl:for-each>
>   <tbody>
> <table>
> 
The <xsl:when>...</xsl:when><xsl:otherwise>...</xsl:otherwise> should be
in a <xsl:choose> element:
http://zvon.org/xxl/XSLTreference/OutputExamples/example_13_59_frame.html

Regards.
Aurélien.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]