Yes, you sure can! Take a look inside fckconfig.js (I'm looking at a version 2 editor right now) and, for example, you can turn off certain features such as FCKConfig.LinkBrowser = false ; FCKConfig.ImageBrowser = false ; FCKConfig.FlashBrowser = false ; FCKConfig.ImageUpload = false ; etc...
I am trying to disable ALL uploading which includes removing the Uploadtab. I am using the current version of ckfinder and ckeditor for php. I have set the AccessControl fileUpload => false. But I still get the Upload tab on the Image File Browser (Uploader). The config settings from fckEditor don't seem to help either, as I have tried putting the following into my config.js for ckEditor: config.filebrowserImageUploadUrl = false; config.filebrowserImageUpload = false; config.ImageUpload = false;
Re: Is it possible to hide some tabs within dialogs?
Yes, you sure can! Take a look inside fckconfig.js (I'm looking at a version 2 editor right now) and, for example, you can turn off certain features such as FCKConfig.LinkBrowser = false ; FCKConfig.ImageBrowser = false ; FCKConfig.FlashBrowser = false ; FCKConfig.ImageUpload = false ; etc...
You can find descriptions of these options and more within the docs at http://docs.cksource.com/
Good luck!
Re: Is it possible to hide some tabs within dialogs?
Hello All,
I am trying to disable ALL uploading which includes removing the Uploadtab. I am using the current version of ckfinder and ckeditor for php. I have set the AccessControl fileUpload => false. But I still get the Upload tab on the Image File Browser (Uploader). The config settings from fckEditor don't seem to help either, as I have tried putting the following into my config.js for ckEditor:
config.filebrowserImageUploadUrl = false;
config.filebrowserImageUpload = false;
config.ImageUpload = false;
So, how do I get rid of the upload tab in the image in this link, (it has the #2 pointing at it):
http://docs.cksource.com/CKEditor_3.x/D ... _(Uploader)
Thanks for your help.