Yesterday I upgraded my ckeditor version form 3.5 to 4.4.1. After the upgrade, I'm seeing full toolbar, instead of basic, everywhere on my site (used ckeditor_4.4.1_full.zip). This is the code I'm using:
CKEDITOR.replace("post_text",
{
toolbar: "Basic"
}
);
However, item-by-tem configuration is working fine. But going that way I'll have to make a lot of changes to my site.
toolbar:"Basic" worked
toolbar:"Basic" worked because toolbar_Basic was defined. Now we cannot define it because the editor package may not contain the necessary plugins. The recommended way is to use toolbarGroups.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Thanks for your response.
Thanks for your response.
If that is the case then the documentation at following link needs to be updated. It is giving an impression that toolbar: "Basic" thing still works.
Check this: http://docs.ckeditor.com/#!/guide/dev_configuration-section-defining-configuration-in-page
Ok, we'll look into it.
Ok, we'll look into it. Thanks for passing it along.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Thank You for information,
Thank You for information, this helped me too, I will have to check out toolbargroups :)