Hello Guys!
Is there any way to completely hide the Folders Pane or, at least, hide the Basket folder?
The reason is that we open the single folder and allow user to upload images only to it.
So, we don't need showing the list of folders.
Sincerely,
Andrii
Is there any way to completely hide the Folders Pane or, at least, hide the Basket folder?
The reason is that we open the single folder and allow user to upload images only to it.
So, we don't need showing the list of folders.
Sincerely,
Andrii

Re: Hide folders pane in CKFinder
viewtopic.php?f=10&t=19053
.columns_2 #sidebar_container {display:none;width:0}Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Hide folders pane in CKFinder
Link regarding basket removal worked for me!
Sincerely,
Andrii
Re: Hide folders pane in CKFinder
your advice regarding the app.css modification worked as well!
So, I don't see the folder pane anymore!
Thank you so much for your support!
Sincerely,
Andrii
Re: Hide folders pane in CKFinder
Re: Hide folders pane in CKFinder
I found my solution below. I used setTimeout() function because I don't know when ckfinder finish working and how can use ckfinder with jquery.
<script> function HideFolderPane(){ $("iframe").contents().find("#sidebar_container").css("width", "0").css("display", "none"); } $(function() { setTimeout("HideFolderPane()", 500); }); </script>slight mod to the above code:
slight mod to the above code:
<script>
function HideFolderPane() {
$("iframe").contents().find("iframe").contents().find("#sidebar_container").css("width", "0").css("display", "none");
}
$(document).ready(function () {
setTimeout("HideFolderPane()", 500);
});
</script>