Main navigation
Product navigation
Main content
CKEditor 4
Overview
Demo
Accessibility Checker
Add-ons
Documentation
Download
Pricing
More
Home
WYSIWYG Editors
CKEditor 4
CKEditor 5
Image upload
CKFinder
Easy Image
Collaboration
Comments
New
Track changes
New
Collaborative editing
Pricing
Case studies
New
Documentation
Help center
Blog
Contact us
The forum operates in
read-only
mode. Please head to
StackOverflow
for support.
Forums
CKEditor
CKEditor
Last post
Thu, 10/22/2009 - 19:06
#1
jsieber
Joined:
22/10/2009
Posts:
10
Problems with in-page configuration
Thu, 10/22/2009 - 21:47
#2
jmfc
Joined:
22/10/2009
Posts:
2
Re: Problems with in-page configuration
I have been struggling with this one for a while today also. It is case sensitive. Try toolbar : 'Full' and toolbar : 'Basic' (capital 'F' and 'B').
CKEDITOR.replace( 'myEditor', { toolbar : 'Basic' });
I figured this out while looking at some examples on overriding these. In the config.js file you can setup something like this
config.toolbar_Basic =
[
['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','About']
];
in order to change what shows up when you define if you want to show the 'Full' or 'Basic' toolbar
Thu, 10/22/2009 - 22:24
#3
jsieber
Joined:
22/10/2009
Posts:
10
Re: Problems with in-page configuration
That was it! Thank you very much!
Twitter
Facebook
Facebook
Instagram
Medium
Linkedin
GitHub
Arrow down
Phone
Menu
Close icon
Check
Re: Problems with in-page configuration
CKEDITOR.replace( 'myEditor', { toolbar : 'Basic' });
I figured this out while looking at some examples on overriding these. In the config.js file you can setup something like this
config.toolbar_Basic =
[
['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','About']
];
in order to change what shows up when you define if you want to show the 'Full' or 'Basic' toolbar
Re: Problems with in-page configuration