CKeditor with a CKFinder custom config file
Posted
by
Daan
on Stack Overflow
See other posts from Stack Overflow
or by Daan
Published on 2012-06-10T14:33:58Z
Indexed on
2012/06/11
10:40 UTC
Read the original article
Hit count: 620
I know it is possible to load a custom config file for CKFinder
CKFinder.config.customConfig = baseUrl + '/js/ckfinder_config.js';
However, when I load CKFinder within the CKEditor I don't know how to load the custom config for CKFinder. I only got these options:
CKEDITOR.editorConfig = function( config )
{
config.filebrowserBrowseUrl = baseUrl ;
config.filebrowserImageBrowseUrl = baseUrl ;
config.filebrowserFlashBrowseUrl = baseUrl ;
config.filebrowserUploadUrl = baseUrl ;
config.filebrowserImageUploadUrl = baseUrl ;
config.filebrowserFlashUploadUrl = baseUrl ;
}
Is there a way?
© Stack Overflow or respective owner