Hello, I have two editors on one page usually instantiated.
I need to start one editor in source mode, so I run this script:
<code>
CKEDITOR.on("instanceReady",function() {
if (jQuery('#x_Code').length) {
CKEDITOR.instances.fbannersedit$x_Code$.setMode('source');
}
});
</code>
This works and one of my editors (called x_Code) is set in source mode, but if I paste some html to it and save, it doesn't save the html, but just blank.
Do I need to refresh in some way the control to make it run correctly?