Hi guys!
I am new to configuration to CKE (not a programmer), but have managed to find out how to remove unwanted tabs to simplify my installation:
However, I would still need to remove some elements :
From image:
From link:
And I don't know how could I do that. Any help?
Thanks a lot!
I am new to configuration to CKE (not a programmer), but have managed to find out how to remove unwanted tabs to simplify my installation:
config.removeDialogTabs = 'link:target;link:advanced;image:Link;image:advanced';
However, I would still need to remove some elements :
From image:
cmbAlign txtVSpace txtHSpace txtBorder
From link:
protocol
And I don't know how could I do that. Any help?
Thanks a lot!

Re: How to remove Element from a particular Tab?
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: How to remove Element from a particular Tab?
http://docs.cksource.com/ckeditor_api/s ... DITOR.html
Attachments:
Re: How to remove Element from a particular Tab?
Removing dialog window fields
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: How to remove Element from a particular Tab?
CKEDITOR.on( 'dialogDefinition', function( ev ) { var dialogName = ev.data.name; var dialogDefinition = ev.data.definition; ev.data.definition.resizable = CKEDITOR.DIALOG_RESIZE_NONE; if ( dialogName == 'link' ) { var infoTab = dialogDefinition.getContents( 'info' ); infoTab.remove( 'protocol' ); dialogDefinition.removeContents( 'target' ); dialogDefinition.removeContents( 'advanced' ); } if ( dialogName == 'image' ) { dialogDefinition.removeContents( 'Link' ); dialogDefinition.removeContents( 'advanced' ); var infoTab = dialogDefinition.getContents( 'info' ); infoTab.remove( 'txtBorder' ); infoTab.remove( 'txtHSpace' ); infoTab.remove( 'txtVSpace' ); infoTab.remove( 'cmbAlign' ); } });Attachments:
Re: How to remove Element from a particular Tab?
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!