Sultan Dadakhanov
Sultan Dadakhanov

Reputation: 67

td width percentage not working notes client via pass-thru html

I'm trying to show a table inside a computed text with pass-thru on in lotus notes client

here is the code of computed text:

<table width="100%" border="1px" style="table-layout:fixed">
<tr>
<td width="10%">test</td>
<td width="90%">test2</td>
</tr></table>

but in notes client I see the table divided almost in half

tried to switch the table width to 1000px, nothing happend also tried to remove table-layout style from table - no matter

I'm stucked...

Upvotes: 0

Views: 1012

Answers (2)

PoisonedYouth
PoisonedYouth

Reputation: 548

It's a known problem in Notes 6:

Question

The width attributes of HTML tables are ignored by Lotus Notes® 6 and later although these table width attributes are obeyed within Notes 5.

...

Answer

This issue was reported to Quality Engineering as SPR# DPOL6HRHRU and as not been fixed in version 8.0 but is approved for investigation for a future release.

A possible work around for this issue is to create the table using LotusScript or in a third party application (such as MS Word) and then copy that table into the Notes document.

Upvotes: 2

minusBugs
minusBugs

Reputation: 1

it worked fine in my system..but you can try this also..remove the % ... try simply 10 amd 90....

<table width="100%" border="1px" style="table-layout:fixed">
   <tr>
        <td width="10">test</td>
        <td width="90">test2</td>
   </tr>
</table>

Upvotes: 0

Related Questions