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
Patrice's answer was very helpful, however it initially did not work for me because TextArea text = new TextArea(); was creating a TextArea with no id field. To solve this I just manually added an id field with:
text.getElement().setId("make_up_an_id_name_here");
Also make sure you put the ckeditor folder in your war directory.
If you choose to link to it in your project_name.html file, add this line above the line that inserts your main ...nocache.js script: