Hi
I've a problem since I upgraded CKEditor to version 4.
CKEditor is removing the table format (display:none) automaticaly. Is there a way to configure CKEditor not to do this? Or is that normal when upgrading?
Here some code:
Bevor Upgrade
<table border="0" cellpadding="2" cellspacing="0" style="width: 500px;">
<tbody>
<tr>
<td style="display: none;">
</td>
<td style="text-align: left; background-color: rgb(204, 204, 204);">
<strong>Ausgabe</strong></td>
<td style="display: none;">
</td>
<td style="display: none;">
After Upgrade
<table border="0" cellpadding="2" cellspacing="0" style="width:500px">
<tbody>
<tr>
<td> </td>
<td style="text-align: left; background-color: rgb(204, 204, 204);"><strong>Ausgabe</strong></td>
<td> </td>
<td> </td>
I hope you can help me. I've sarched too long for a answer without success.
Cristiano