I have made a file browser... i get the files to come up and display using a PHP script
the files are being shown in a new browser window
I call the following in an "onclick" : CKEDITOR.tools.callFunction('1', '/upload/image/logo.jpg');
the 1 is being passed via $_GET
when i click I get the following error in firebug:
"g is undefined"
am I using this function properly?
the files are being shown in a new browser window
I call the following in an "onclick" : CKEDITOR.tools.callFunction('1', '/upload/image/logo.jpg');
the 1 is being passed via $_GET
when i click I get the following error in firebug:
"g is undefined"
am I using this function properly?
Re: Problems with custom file browser
the proper command is ...
window.opener.CKEDITOR.tools.callFunction
After chatting on IRC about this one... it seems as though there should be a better error happening here than what I got.
Re: Problems with custom file browser
Thanks for that! Confused me for a while till I found this post.
Any chance of some updating the Custom File Browser page?