Hi,
I have CKeditor 3.6.4 and I used the following code:
Everything works fine except {filebrowserImageBrowseUrl:'/df/dd.php'}
When I use the ckeditor config.js and supply it with the follwoing code it works fine:
I want the file browser initialize to work from jquery?! Does it a bug? or there is something missing?!
I have CKeditor 3.6.4 and I used the following code:
$("textarea").ckeditor(function(){extraPlugins : 'stylesheetparser'},{contentsCss : ['css/foundation.css','css/app.css','css/editor.css']},{stylesSet : []},{filebrowserImageBrowseUrl:'/df/dd.php'},{bodyClass: 'panel'});
Everything works fine except {filebrowserImageBrowseUrl:'/df/dd.php'}
When I use the ckeditor config.js and supply it with the follwoing code it works fine:
config.filebrowserBrowseUrl = '/browser/browse.php';
I want the file browser initialize to work from jquery?! Does it a bug? or there is something missing?!

Re: CKeditor 3.6.4 does not load filebrowser using Jquery!
I'm using CKEditor 3.6.4 (same bug in 3.6.3) and Google Chrome v.20
Any suggestion?
Thanks.
Re: CKeditor 3.6.4 does not load filebrowser using Jquery!
it should called by Jquery Like the following:
$("textarea").ckeditor(function(){},{extraPlugins : 'stylesheetparser',filebrowserImageBrowseUrl:['/filebrpwser']});Re: CKeditor 3.6.4 does not load filebrowser using Jquery!
Works fine on Firefox, but doesn't work in Chrome 20.
Re: CKeditor 3.6.4 does not load filebrowser using Jquery!
I'd like to confirm that configuration items should be written as propery: value as I stated in my previous post.
Re: CKeditor 3.6.4 does not load filebrowser using Jquery!
jQuery('#textarea').ckeditor({ filebrowserBrowseUrl : 'libraries/elfinder/elfinder.php.html', language : 'es', scayt_autoStartup : false, toolbarCanCollapse : false, height : '250px', resize_maxWidth : '100%', resize_minWidth : '100%', enterMode : CKEDITOR.ENTER_BR, toolbar : [ ['Font','FontSize'], ['Bold','Italic','Underline'], ['JustifyLeft','JustifyCenter','JustifyRight'], ['NumberedList','BulletedList','-','Outdent','Indent'], ['Link','Image','Table'], ['Cut','Copy','Paste','PasteFromWord'], ['TextColor','BGColor'], ['Undo','Redo'] ] });Re: CKeditor 3.6.4 does not load filebrowser using Jquery!
Re: CKeditor 3.6.4 does not load filebrowser using Jquery!