I have a problem:
I open CKEditor in the lightbox. For lightbox im using "Lightbox_me". Lightbox_me works with JQuery.
For CKEditor i've used demo code
So when i enter page, I should see lightbox appearing in front of my eyes and in that lightbox I should see fully functional CKEditor. I do see CKEditor, but it doesn't function.
At the text field (area) I see no text and I can't active the field area where to write text in.
That's a part of the code that was generated by CKEditor:
The body tag should have contained - "<p>Initial value.</p>"
I get no errors at the debug console.
I open CKEditor in the lightbox. For lightbox im using "Lightbox_me". Lightbox_me works with JQuery.
For CKEditor i've used demo code
<div id="ckeditor"> <form method="post"> <p> My Editor:<br /> <textarea id="editor1" name="editor1"><p>Initial value.</p></textarea> <script type="text/javascript"> CKEDITOR.replace( 'editor1' ); </script> </p> <p> <input type="submit" /> </p> </form> </div> <script> $("#ckeditor").lightbox_me({ }); </script>
So when i enter page, I should see lightbox appearing in front of my eyes and in that lightbox I should see fully functional CKEditor. I do see CKEditor, but it doesn't function.
At the text field (area) I see no text and I can't active the field area where to write text in.
That's a part of the code that was generated by CKEditor:
<iframe style="width:100%;height:100%" frameborder="0" title="Rich text editor, editor1, press ALT 0 for help." src="" tabindex="-1" allowtransparency="true"> <html> <head></head> <body></body> </html> </iframe>
The body tag should have contained - "<p>Initial value.</p>"
I get no errors at the debug console.
Re: Error when opening CKEditor in lightbox_me