I would like to be able to determine what toolbar is displayed on different instances of CKEditor. My understanding from reading the Toolbar docs is that creating a toolbarGroup would replace all the toolbars in all instances of CKEditor. The CKEDITOR.config docs states you can create a custom toolbar with config.Toolbar_customName. However, I can't find how you would "call" that toolbar dynamically.
Any help would be greatly appreciated!
Thank you
Have you checked the /samples
Have you checked the /samples included in the CKEditor package? Some of them use multiple editor instances, like here and here. Check the page source.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Solution
Just for anyone else who might be searching for a solution to a similar issue,
Configure the custom toolbars in config.js, as documented at http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-toolbar.
e.g., config.toolbar_basic = [[ 'Bold','Italic','Underline','Find','Replace']];
When invoking CKEditor, call the custom toobar as such:
CKEDITOR.replace('editor1', { toolbar: 'basic' });
I solved it when I stumbled into the CKEditor 3.x Developer's Guide, oddly enough.