Hello,
I’m having a problem with the ckeditor, when I have an HTML like this one:
<td> xxxx …..<br><br><br></td>
Every time I save, it deletes a BR.
1st time saving:
<td>xxxx …..<br><br></td>
2nd time:
<td>xxxx …..<br></td>
3rd time:
<td>xxxx …..</td>
and in this case:
<strong> XXX,– </strong>
result
<strong> XXX,– </strong>
What can I do to avoid this problem?
Thanks in advance for your help
My configuration
My configuration
config.extraPlugins = 'colordialog,docprops,font,find,selectall,justify,colorbutton,marco,forms,templates,preview,newpage';
config.language = IDIOMA_CALENDARIOS;
config.enterMode = CKEDITOR.ENTER_P;
config.basicEntities = false;
config.entities_greek = false;
config.entities_latin = false;
config.entities_additional = '';
config.entities = false;
config.entities_processNumerical = false;
config.pasteFromWordRemoveStyles = false;
config.pasteFromWordRemoveFontStyles = false;
config.width = '100%';
config.height = '400px';
config.allowedContent = true;
config.ignoreEmptyParagraph = true;
config.autoParagraph = false;
config.fillEmptyBlocks = true;
config.fullPage = true;