Hello:
I'm having peculiar error. I bring text to ckeditor through ajax request. But sometimes text doesn't appear but debugging with chrome, I can see that I put the text in ckeditor. Here is my code:
I create ckeditor:
<textarea type="text" maxlength="1024" name="_firmaEmpresa" id="firmaEmpresa" class="input_formulario borderBox text ui-corner-all" rows=4 style="resize:none;">
CKEDITOR.replace($('#firmaEmpresa', $contenedor).get(0), {
width: '100%',
height: '300px',
readOnly: soloLectura
});
Insert the text:
CKEDITOR.instances.firmaEmpresa.setData('my text here');