IMPORTANT: This module is no longer maintained, and it may have problems working on some Codename One platforms. The CKeditor version is out of date also.
A WYSIWYG HTML Editor component for Codename One
The CKeditor widget wraps the Javascript CKeditor widget inside a BrowserComponent and exposes a subset of the functionality as a Java API. It can easily be improved to add additional functionality also, but just putting up the bare-bones necessary features right now to get it working.
1 Add the CodenameOneCKeditorComponent.cnlib library to your project's lib directory. 3. Right click on your project in the netbeans project explorer, and select "Refresh Libs" (so that Netbeans will recognize your libs).
-
Create a new CKeditor object:
CKeditor editor = new CKeditor();
-
Initialize the editor. You can either do this asynchronously with initLater(), or synchronously with initAndWait(). Your choice will depend on whether you want to start interacting with it right away.
editor.initLater(); // or editor.initAndWait();
-
Add editor to your form.
form.setLayout(new BorderLayout()); form.addComponent(BorderLayout.CENTER, editor);
String content = editor.getData();
editor.setData("<p>Some HTML to set as the content</p>");
// or set content as text
editor.setText("Hello world\n This is a new line\n another new line");
// This will be converted to appropriate HTML.
Lots of things to do. This is basically just a quick and dirty proof of concept right now. One of the most important things that needs to be done is to add the ability to set configuration options so that you can, e.g. change the options in the toolbar.
Potentially, wrappers can be created for any property, method, or event in CKeditor.