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
Disabling basket folder is explained here:
viewtopic.php?f=10&t=19053
Regarding disabling left sidebar... humm... I haven't tried that, but how about trying this trick:
in skins\kama\app.css add at the end:
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
Dear Sir,
I'm using ckfinder in standalon mode and I don't want to see folder panel.
I don't wont to remove CSS line, because I'm using ckfinder popup version also.
How can I remove ckfinder folder pane with jquery?
I tryed that, but ckfinder runs in iframe and I didn't refer it to jQuery.
Regards,
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.
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>