I am migrating to CKeditor3 from FCKEditor 2.6. Using Fckeditor, you would know that the editor was intialized via the FCKEditor_onComplete function. There does not seem to be a CKEditor_onComplete call in version 3.0. How do you know when the editor has initialized completely?
- Steve
- Steve

Re: onComplete for CKeditor 3
Re: onComplete for CKeditor 3
Re: onComplete for CKeditor 3
CKEDITOR.on('instanceReady', function(e) { CKEDITOR.instances.NameOfMyEditor.execCommand( 'source' ); });Re: onComplete for CKeditor 3
And there's a configuration option to start the editor in source mode, so for that example you don't need any event handler at all.