The forum operates in read-only mode. Please head to StackOverflow for support.
<zkeditor:editor customConfigurationsPath="/zk/zk_fhg/zk_editorconfig.js"/>
fcked=new ZkEditor((HttpServletRequest)pageContext.getRequest(),property); if (customConfigurationsPath != null) fcked.getConfig().put("CustomConfigurationsPath",customConfigurationsPath);
Re: problem with the personal configuration file
I had the same kind of problem, but this works:
<script type="text/javascript">
window.onload = function(){
var oFCKeditor1 = new FCKeditor( 'myTextarea') ;
oFCKeditor1.BasePath = /fckeditor/" ;
oFCKeditor1.Config['CustomConfigurationsPath']='/mypath/myconfigfile.js';
oFCKeditor1.ReplaceTextarea() ;
}
</script>
best regards,
Carla
Re: problem with the personal configuration file
fcked=new ZkEditor((HttpServletRequest)pageContext.getRequest(),property); if (customConfigurationsPath != null) fcked.getConfig().put("CustomConfigurationsPath",customConfigurationsPath);