I have temporary solution for my case, but filebrowser would be better to use. What I did: * added a new tab for plugins: link, image, flash, like this: ckeditor\plugins\image\dialogs\image.js:
I found out that setting 'filebrowserBrowseUrl' in the config shows the buttons, but only with that URL and I am adding extra params in the filebrowser properties like :
Re: CKEditor 3.0 and CKFinder
I have temporary solution for my case, but filebrowser would be better to use.
What I did:
* added a new tab for plugins: link, image, flash, like this:
ckeditor\plugins\image\dialogs\image.js:
contents:[ ckeditor_ext_image_tab1, { ...* In ckeconfig.js I have:
var ckeditor_ext_image_tab1 = { id: 'systemimg', label: 'Browse images', elements: [{ type: 'html', html: "<div class='cke-file-list'></div>", onLoad: function(event) { // load content by using ajax ... } focus: function() { ... }, onClick: function() { ... }, style: 'width: 100%; height: 100%; border-collapse: separate;' }] };It works, but I hope to see a solution for filebrowser plugin use
Re: CKEditor 3.0 and CKFinder
I found out that setting 'filebrowserBrowseUrl' in the config shows the buttons, but only with that URL and I am adding extra params in the filebrowser properties like :
filebrowser: { action: 'Browse', //required target: 'Link:txtUrl', //required url: 'find-img', params: //optional { action: 'link' } }It look like it is not using the filebrowser.url
Please help, it is driving me nuts.