Hi,
I'm trying to import tables from LibreOffice in a joomla article with JCE Pro.
My table is ok, in LibreOffice,
I choose File -> See it in Web browser (not sure of the translation from my french LibreOffice...). I hit ctrl-U to see the source code and copy/paste in JCE (Code Tab). But when I then hit "Editor" the table is messed up except the 1st line. Then I go back to the "Code" Tab, and I can see that some translations have been realized (word "currentcolour") but, well...
If I look at the cell properties, those of the 1st line are OK, but the others are not (I see some NAN...).
Here is the initial code:
<table width="100%" cellpadding="4" cellspacing="0">
<col width="85*"/>
<col width="85*"/>
<col width="85*"/>
<tr valign="top">
<td width="33%" style="border-top: 4.25pt solid #800080; border-bottom: 4.25pt solid #800080; border-left: 4.25pt solid #800080; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm"><p>
Sd fqsdf
</p>
</td>
<td width="33%" style="border-top: 4.25pt solid #800080; border-bottom: 4.25pt solid #800080; border-left: 4.25pt solid #800080; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm"><p>
Sdf
</p>
</td>
<td width="33%" style="border: 4.25pt solid #800080; padding: 0.1cm"><p>
<br/>
</p>
</td>
</tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr valign="top">
<td width="33%" style="border-top: none; border-bottom: 4.25pt solid #800080; border-left: 4.25pt solid #800080; border-right: none; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm"><p>
<br/>
</p>
</td>
<td width="33%" style="border-top: none; border-bottom: 4.25pt solid #800080; border-left: 4.25pt solid #800080; border-right: none; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm"><p>
Er ter
</p>
</td>
<td width="33%" style="border-top: none; border-bottom: 4.25pt solid #800080; border-left: 4.25pt solid #800080; border-right: 4.25pt solid #800080; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0.1cm"><p>
<br/>
</p>
</td>
</tr>
</table>
And here it is after the "translation":
<table style="width: 100%;" cellspacing="0" cellpadding="4">
<colgroup>
<col width="85*" />
<col width="85*" />
<col width="85*" /> </colgroup>
<tbody>
<tr valign="top">
<td style="border-color: #800080 currentcolor #800080 #800080; border-style: solid none solid solid; border-width: 4.25pt medium 4.25pt 4.25pt; padding: 0.1cm 0cm 0.1cm 0.1cm; width: 33%;">
<p>Sd fqsdf</p>
</td>
<td style="border-color: #800080 currentcolor #800080 #800080; border-style: solid none solid solid; border-width: 4.25pt medium 4.25pt 4.25pt; padding: 0.1cm 0cm 0.1cm 0.1cm; width: 33%;">
<p>Sdf</p>
</td>
<td style="border: 4.25pt solid #800080; padding: 0.1cm; width: 33%;">
<p> </p>
</td>
</tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr valign="top">
<td style="border-color: currentcolor currentcolor #800080 #800080; border-style: none none solid solid; border-width: medium medium 4.25pt 4.25pt; padding: 0cm 0cm 0.1cm 0.1cm; width: 33%;">
<p> </p>
</td>
<td style="border-color: currentcolor currentcolor #800080 #800080; border-style: none none solid solid; border-width: medium medium 4.25pt 4.25pt; padding: 0cm 0cm 0.1cm 0.1cm; width: 33%;">
<p>Er ter</p>
</td>
<td style="border-color: currentcolor #800080 #800080; border-style: none solid solid; border-width: medium 4.25pt 4.25pt; padding: 0cm 0.1cm 0.1cm; width: 33%;">
<p> </p>
</td>
</tr>
</tbody>
</table>
Any idea anybody ?
Why does it work for the 1st line ?
Thanks in advance,
jc