Hi,
I've updated the pom.xml to use the last wiquery release (the 1.1.2)
and that seems to work well. Maybe this is a problem with the
dependencies in the last version. I let for the moment the wiquery-
ckeditor as a snapshot.
My example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml" xml:lang="en"
xmlns:wicket="
http://wicket.apache.org/">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /
>
<title>WiQuery application</title>
</head>
<body>
<textarea wicket:id="editor"></textarea>
</body>
</html>
package org.odlabs.wiquery.examples;
import org.apache.wicket.PageParameters;
import org.apache.wicket.markup.html.WebPage;
import org.apache.wicket.markup.html.form.TextArea;
import org.odlabs.wiquery.plugins.ckeditor.CKeditorBehavior;
public class HomePage extends WebPage {
private static final long serialVersionUID = 1L;
public HomePage(final PageParameters parameters) {
super();
TextArea<String> editor = new TextArea<String>("editor");
editor.add(new CKeditorBehavior());
add(editor);
}
}
As attachment, a snapshot of the result.
You can download the new version (I've updated the repository).
Regards
Julien