I have a page with 4 editors.
I like to use sharedSpaces as default for al my editor (even there's only one editor)
In config.js I've set 2 toolbars like:
But when I'm setting up my html/js:
the toolbar shows the FULL layout, not my own defined one.
Anyone can help me out? Thanx in advance
Edwin
I like to use sharedSpaces as default for al my editor (even there's only one editor)
In config.js I've set 2 toolbars like:
config.toolbar_swellToolbar1 = [ ['Link','Unlink','Image','MediaEmbed','SpecialChar','Anchor','HorizontalRule'], ['Format','Styles'], ['Bold','Italic','Underline'], ['NumberedList','BulletedList','Outdent','Indent'] ]; config.toolbar_swellToolbar2 = [ ['Format','Styles'], ['Bold','Italic','Underline'] ];
But when I'm setting up my html/js:
<textarea id="stijlen" name="stijlen" style="width:500px; height:200px">text will be over here</textarea>
<script type="text/javascript">
CKEDITOR.replace( 'stijlen', {
sharedSpaces: {
top : 'swellToolbar2'
},
removePlugins : 'maximize,resize',
enterMode : CKEDITOR.ENTER_BR
});
</script>the toolbar shows the FULL layout, not my own defined one.
Anyone can help me out? Thanx in advance
Edwin
