Hello everyone,
First, sorry for my english, I'll try to explain my problem.
When CKFinder is integrated into CKEditor on framed edition, all work well, but when I change the mode to switch to Inline Editing, CKFinder not working.
I tried these codes, without success.
Can you help me or send me some good ideas?
thank you
<script>
window.onload = function() {
CKEDITOR.disableAutoInline = true;
CKEDITOR.inline( 'editable' );
// Turn off automatic editor creation first.
var editor = CKEDITOR.replace( 'editable' );
CKFinder.setupCKEditor( editor, 'lib/ckfinder/' );
};
</script>
An dthis code
<script>
window.onload = function() {
// Turn off automatic editor creation first.
var editor = CKEDITOR.replace( 'editable' );
CKFinder.setupCKEditor( editor, 'lib/ckfinder/' );
CKFinder.disableAutoInline = true;
CKFinder.inline( 'editable' );
};
</script>
It should be the same process
It should be the same process. Some people have had this problem when they have two instances of CKEditor going on a page, where CKFinder is loaded on the first instance but is used in the second (which doesn't have CKE).
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!