Hi
the first instance of CKEditor loads pretty slowly. I figured out the skin (I use a custom one), language and styles are being loaded. Once an Editor has been instantiated, all editors after that load in an instance. So the question is: Can you preload the necessary stuff somehow? What methods does CKEditor call to load the skin, so I could load it manually?
Thanks,
Luke
the first instance of CKEditor loads pretty slowly. I figured out the skin (I use a custom one), language and styles are being loaded. Once an Editor has been instantiated, all editors after that load in an instance. So the question is: Can you preload the necessary stuff somehow? What methods does CKEditor call to load the skin, so I could load it manually?
Thanks,
Luke

Re: How can you preload CKEditor
function insertCK () { editor = CKEDITOR.appendTo( 'wysiwyg', { skin : 'v2', width : 1000, height : 400, removePlugins: 'elementspath', extraPlugins : 'ASPSpellCheck', resize_enabled: false, enterMode: 2, // 1 = <P>, 2= <BR>, 3 = <DIV> shiftEnterMode: 1, // 1 = <P>, 2= <BR>, 3 = <DIV> toolbar: [ ['Source','ASPSpellCheck'], ['Cut','Copy','Paste','PasteText','PasteFromWord','Print'], ['Undo','Redo','Find','Replace','SelectAll','RemoveFormat'], ['BidiLtr', 'BidiRtl'], ['Bold','Italic','Underline','Strike','Subscript','Superscript'], ['NumberedList','BulletedList','Outdent','Indent','Blockquote','CreateDiv'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Link','Unlink','Anchor'], ['Image','Table','HorizontalRule','Smiley','SpecialChar'], ['TextColor','BGColor'], ['Maximize', 'ShowBlocks','About'], '/', ['Format','Font','FontSize'] ] }); CKFinder.setupCKEditor( null, 'CKFinder/' ); }And the DIV tag
See if that helps.
Re: How can you preload CKEditor
Also, to the DEV-Team: I think this is not a very uncommon wish, respectively this is something that might come in handy for all kinds of AJAX-based / on-the-fly replacements of CKEditor. A method for this in the API would be awesome!