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
FCKeditor 2
Last post
Mon, 04/10/2006 - 06:19
#1
yesso
Joined:
21/04/2006
Posts:
2
Can i Disable the Toolbarset complete??
Hi,
how can i complete the hole Toolbarset? I whould use only the text-area...
thX
yesso
Mon, 04/10/2006 - 05:55
#2
kaeverens
Joined:
08/02/2007
Posts:
126
RE: Can i Disable the Toolbarset complete??
dunno about /diabling/ it, but you can start it minimised. in fckconfig, set FCKConfig.ToolbarStartExpanded=false
Kae
Mon, 04/10/2006 - 06:19
#3
tvanerp
Joined:
10/04/2006
Posts:
2
RE: Can i Disable the Toolbarset complete??
try adding the following toolbarset to your fckconfig.js
FCKConfig.ToolbarSets["empty"] = [] ;
when you initiate the editor use
$editor=new FCKeditor("textarea");
$editor->ToolbarSet="empty";
$editor->Create();
Twitter
Facebook
Facebook
Instagram
Medium
Linkedin
GitHub
Arrow down
Phone
Menu
Close icon
Check
RE: Can i Disable the Toolbarset complete??
Kae
RE: Can i Disable the Toolbarset complete??
FCKConfig.ToolbarSets["empty"] = [] ;
when you initiate the editor use
$editor=new FCKeditor("textarea");
$editor->ToolbarSet="empty";
$editor->Create();