How do you change the CKEditor toolbar dynamically (without using a pre-defined toolbar)?
The CKEditor Developer\'s Guide only tells you how to set the toolbar durin
Following mb21's suggestion I managed to load a new toolbar by reinitialising the whole editor:
CKEDITOR.instances.editor.destroy(); CKEDITOR.replace('editor', configWithNewToolbar);