How to open a javascript dialog instead of a popup window when click on the browse server button ?
What I want to do is that when the user choose a template in the ckeditor, they can browse the images which are previously uploaded in the server.
I follow the offical development guide http://docs.cksource.com/CKEditor_3.x/D ... _(Uploader)#Basic_Configuration
In which it said
The sample below shows basic configuration code that can be used to insert a CKEditor instance with the file browser configured.
CKEDITOR.replace( 'editor1', { filebrowserBrowseUrl : '/browser/browse.php', filebrowserUploadUrl : '/uploader/upload.php' });
where '/browser/browse.php' is the external file uploader.
However in my system there is a fileuploader which is generated by a javascript.
I would like to call the javascript function to open a file upload dialog, rather than open a new popup when the 'browse server' button is clicked.
Anyone know what should I do?
Sorry for my bad English.
Thanks