hi,
i'm trying to implement the fck editor in a java environment and i'm sticking with the implementation done in one of the examples. The editor as such works fine but when i try to overwrite the default skin to Silver its not happening... any ideas?
i'm trying to implement the fck editor in a java environment and i'm sticking with the implementation done in one of the examples. The editor as such works fine but when i try to overwrite the default skin to Silver its not happening... any ideas?
String intialText = (String) request.getAttribute("notebook_text");
FCKeditor fckEditor = new FCKeditor(request, "EditorDefault");
//fckEditor.setWidth("100%");
//fckEditor.setHeight("100%");
fckEditor.setValue(intialText);
FCKeditorConfig fckConfig = fckEditor.getConfig();
fckConfig.put("FCKConfig.SkinPath","fckeditor/editor/skins/silver/");
fckEditor.setConfig(fckConfig);
out.println(fckEditor);
Re: overwriting from default Skin to Silver in a JSP
<FCK:editor instanceName="EditorDefault" value="${notebook_text}" width="80%" height="50%" toolbarSet="Basic" > <FCK:config SkinPath="/fckeditor/editor/skins/silver/"/> </FCK:editor>Re: overwriting from default Skin to Silver in a JSP
It will resolve automatically against the loading FCKeditor.