I want to eliminate 3 tabs from image button window (Image info, Link and Advanced), because I want to leave only the option to upload files. How can I do this ?
FCKeditor.Config['ImageUpload'] = true; just adds a 3rd image upload tab and setting it to false doesn't remove the upload button from the image info tab.
Is there a way of removing the entire image info tab or at least removing the upload button from that table to just allow image URLs?
Re: How to eliminate tabs?
FCKConfig.ImageDlgHideLink = false ;
FCKConfig.ImageDlgHideAdvanced = false ;
to
FCKConfig.ImageDlgHideLink = true ;
FCKConfig.ImageDlgHideAdvanced = true ;
to eliminate tabs Link and Advanced.
But how can I eliminate the tab Image Info, too?
Or at least how can I start the with Upload tab, the default start tab (not Image info)?
Re: How to eliminate tabs?
I tried FCKeditor.ImageDlgHideAdvanced = true;
but that didn't change anything. Some people here are saying they see three tabs, but I only see two. I'd like to see one - just the "links" tab.
Does anybody know a setting for that?
Thanks,
doug
Re: How to eliminate tabs?
Is there a way of removing the entire image info tab or at least removing the upload button from that table to just allow image URLs?
Thanks,
doug
Re: How to eliminate tabs?
FCKeditor.Config['ImageBrowser'] = false; suppresses the upload UI.
doug
Re: How to eliminate tabs?
My config file has this:
FCKConfig.ImageDlgHideLink = true ;
FCKConfig.ImageDlgHideAdvanced = true ;
FCKConfig.ImageUpload = true ;