I\'m looking for a way to integrate CKEditor in my GWT project.
I\'ve made some googling and found this project: https://code.google.com/p/gwt-ckeditor/ which has be
I'd also suggest ScriptInjector as it gives you a callback that the script has finally loaded and everything's fine.
Thereafter you have to use $wnd to address CKEDITOR properly and replace the textarea in native code:
private native void initCKEditor(String id) /*-{
this.@com.google.editor.CKeditor::editor = $wnd.CKEDITOR.replace( id );
}-*/;