Hi,
All of the columns on my Purchase Order text wrap except the Lookup Code column.
Example:
PN123 PN123456V2A Part Number 123456 Version 2 $2.99
456 ALPHA
So if the cell cannot accept 30 characters it puts the remaining below except the Lookup Code Column.
<tr>
<td style="width:10%">
Description:
</td>
<td style="width:24%">
<xsl:value-of select="Description"/>
</td>
<td>
<img src="spacer.gif" height="1" width="2"/>
</td>
<td style="width:12%">
Lookup Code #:
</td>
<td style="width:16%">
<xsl:value-of select="OrderNumber"/>
</td>
<td>
<img src="spacer.gif" height="1" width="2"/>
</td>
<td style="width:12%">
Tax (Amt.):
</td>
<td style="width:10%">
<xsl:value-of select="format-number(TaxAmount, $CurrencyFormat, 'CurrencyLocal')"/>
</td>
<td>
<img src="spacer.gif" height="1" width="2"/>
</td>
<td style="width:8%">
Subtotal:
</td>
<td class="Numeric" style="width:8%">
<xsl:value-of select="format-number(Total, $CurrencyFormat, 'CurrencyLocal')"/>
</td>
</tr>
</table>
*This post is locked for comments