Hello Everyone:
I have the 3.6.1 edition of ckeditor installed on my system, and it works fine, except the toolbar contains far more options than I need.
I want ckeditor to use the 'Basic' toolbar definitions, as they are defined here:
http://docs.cksource.com/CKEditor_3.x/D ... de/Toolbar
I found the definition in the ckeditor/_source/plugins/toolbar/plugin.js file toward the end.
I changed the toolbar definition from...
CKEDITOR.config.toolbar = 'Full';
to...
CKEDITOR.config.toolbar = 'Basic';
But it is still loading as a full toolbar.
Out of frustration, I even tried copying the definitions in the basic array over the full array, so that the full array def is now essentially the same as the basic one. After reuploading the plugin.js and clearing the cache, and then reloading the page, it is still loading the full toolbar.
Am not sure what I'm missing. Can anyone give me some direction, please?
Ty.
WB
Tue, 06/28/2011 - 09:13
#1
Re: Toolbar Problem: What am I missing?
If you are using special config in replace function you have to set
Alternativly you can take a look at /_samples/api_dialog.html file.
Re: Toolbar Problem: What am I missing?
Thank you for clarifying that...