"['Link','Unlink','Anchor'],\n" +
"['Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak', '-', 'ShowBlocks'],\n" +
"];\n" +
"FCKConfig.ToolbarCanCollapse = false;\n";
final JHTMLEditor htmlEditor = new JHTMLEditor(HTMLEditorImplementation.FCKEditor, JHTMLEditor.FCKEditorOptions.setCustomJavascriptConfiguration(configurationScript));
htmlEditor.addHTMLEditorListener(new HTMLEditorAdapter() {
@Override
public void saveHTML(HTMLEditorSaveEvent e) {
JOptionPane.showMessageDialog(contentPane, "The data of the HTML editor could be saved anywhere...");
}
});