Textarea content does not display and the textarea is not editable (Happens randomly)
Only when I resize the Editor (Bottom right corner handle) the content starts to appear and the Editor is editable, this bug appears randomly and only tested in Chrome. Has anyone experienced this or any solutions would be helpful?
Example of my textarea:
<textarea rows="5" cols="80"><?php echo $output; ?></textarea>
And this is how I set it up:
// Set the ckeditor wysiwyg editor
function CKupdate(){
for ( instance in CKEDITOR.instances )
CKEDITOR.instances[instance].updateElement();
}
$( 'textarea' ).ckeditor();
CKEditor Version 4.4.6
UPDATED with Screenshots
Click here to view screenshots
ISSUE RESOLVED
I have found the display Bug, within the output of the iframe:
Working Editor:
<iframe src="" frameborder="0" class="cke_wysiwyg_frame cke_reset" title="Rich Text Editor, detailed_description" aria-describedby="cke_125" tabindex="0" allowtransparency="true" style="width: 704px; height: 100%;"></iframe>
Editor with display Bug:
<iframe src="" frameborder="0" class="cke_wysiwyg_frame cke_reset" title="Rich Text Editor, customers" aria-describedby="cke_71" tabindex="10" allowtransparency="false" style="width: 0px; height: 200%;"></iframe>
Notice the difference in width between the two Editors/iframes, the editor which causes the issues is the one with width: 0px, somehow when you resize the browser or Editor it changes the width back to 704px.
Hope this will help someone in future...