I am trying to modify the full toolbar set to my liking and have come across a rather strange problem.
My config.js file looks like this:
Pretty much the same just with the form buttons gone.
The issue i am running into is in Firefox this works correctly and the form buttons are no longer there, however if i have a look in Chrome (Which is my main browser) the form buttons are still present.
So something funky is happening somewhere. I am using the latest version of CKEditor (3.2) Anyone else ran into the same issue/bug or is something really strange going on?
Update: Using the latest nightly fixed the toolbar issue in Chrome, but now i have another problem.
I'm getting this issue only in chrome in the latest nightly.
I have quite a few editors on the same page, in IE and Firefox they show up fine no matter whether i use the JS replace method or by class name.
However in Chrome i will ever get the first two or so, all the others textareas simply disappear. No textarea or anything just a gap where the editor and textarea should be.
My config.js file looks like this:
CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; config.toolbar_Full = [ ['Source','-','Save','NewPage','Preview','-','Templates'], ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], '/', ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'], ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Link','Unlink','Anchor'], ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'], '/', ['Styles','Format','Font','FontSize'], ['TextColor','BGColor'], ['Maximize', 'ShowBlocks','-','About'] ]; };
Pretty much the same just with the form buttons gone.
The issue i am running into is in Firefox this works correctly and the form buttons are no longer there, however if i have a look in Chrome (Which is my main browser) the form buttons are still present.
So something funky is happening somewhere. I am using the latest version of CKEditor (3.2) Anyone else ran into the same issue/bug or is something really strange going on?
Update: Using the latest nightly fixed the toolbar issue in Chrome, but now i have another problem.
I'm getting this issue only in chrome in the latest nightly.
I have quite a few editors on the same page, in IE and Firefox they show up fine no matter whether i use the JS replace method or by class name.
However in Chrome i will ever get the first two or so, all the others textareas simply disappear. No textarea or anything just a gap where the editor and textarea should be.