Greetings,
I unhid the Browse Server button on my link dialog. I set my filebrowserBrowseUrl parameter. I can put the url from this parameter in the browser addressbar and the page displays. When I click on the button, nothing happens. I look in firebug under the net tab and no request is being sent. What am I missing?
I unhid the Browse Server button on my link dialog. I set my filebrowserBrowseUrl parameter. I can put the url from this parameter in the browser addressbar and the page displays. When I click on the button, nothing happens. I look in firebug under the net tab and no request is being sent. What am I missing?

Re: Browse Server button not responding
http://docs.cksource.com/ckeditor_api/s ... in.js.html
http://somewebsite.com/index.php
http://somewebsite.com/index.php?filemanager=1
Re: Browse Server button not responding
<script type="text/javascript"> $(function() { var config = { toolbar: [ ['Source'], ['Cut','Copy','Paste','PasteText','PasteFromWord','-','SpellChecker'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Styles','Format','FontSize'], ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'], ['Bold', 'Italic', '-','Subscript','Superscript','-','Link', 'Unlink'], ['Table','HorizontalRule','SpecialChar'] ], filebrowserImageBrowseUrl : '<%=request.getContextPath()%>/manage/action/contentFileManager', filebrowserBrowseUrl : '<%=request.getContextPath()%>/manage/action/contentFileManager', filebrowserWindowWidth : '640', filebrowserWindowHeight : '480', resize_dir: 'vertical' }; $('.jquery_ckeditor').ckeditor(config); }); </script>What is wrong??? I can view the source on my browser and copy and paste the url that gets created for filebrowserBrowseUrl into the address bar and the url displays. Should I not get something poping up? I am many hours into something that according to the documentation this is easy to do. The docs are very light so I have been digging into the varios CKEDITOR objects and the jquery objects and monitoring them at breakpoints for some clue. I have tried setting the config.filebrowserBrowseUrl in the config.js. All the examples us replace() to set this. I have tried but I do not know the first parameter, it is buried in the jquery somewhere(I tried '.jquery_ckeditor'). Do I need to do the replace()?
Re: Browse Server button not responding
add onClick function to the button definition in link.js
added a variable on a script in the page that loads the editor. I called it selectedURL
added selectedURL=this; to the onload of the url textfield in link.js(is there a better way to find this text field???)
called javascript window.open in the script on the editor page.
when I get the url I call selectedURL.setValue(the_url_string);
This will get me going but someone please tell me the right way to do this.