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, 01/22/2007 - 07:08
#1
ozimic
Joined:
22/01/2007
Posts:
3
How to resize editor?
Fri, 02/02/2007 - 23:36
#2
ohvayha
Joined:
02/02/2007
Posts:
1
RE: How to resize editor?
Dear sir, give me a try:
<script type="text/javascript" src="_path_to_fckeditor.js"></script>
<script language="javascript" type="text/javascript">
var oFCKeditor = new FCKeditor('mainEditor');
oFCKeditor.BasePath = '_pah_to_FCKeditor/';
oFCKeditor.Create();
function FCKeditor_OnComplete( editorInstance )
{
FCKeditorAPI.GetInstance('mainEditor').Commands.GetCommand('FitWindow').Execute();
}
</script>
Wed, 02/14/2007 - 19:48
#3
egclubb
Joined:
22/06/2007
Posts:
12
RE: How to resize editor?
https://sourceforge.net/forum/message.p ... id=4154769
Twitter
Facebook
Facebook
Instagram
Medium
Linkedin
GitHub
Arrow down
Phone
Menu
Close icon
Check
RE: How to resize editor?
<script type="text/javascript" src="_path_to_fckeditor.js"></script>
<script language="javascript" type="text/javascript">
var oFCKeditor = new FCKeditor('mainEditor');
oFCKeditor.BasePath = '_pah_to_FCKeditor/';
oFCKeditor.Create();
function FCKeditor_OnComplete( editorInstance )
{
FCKeditorAPI.GetInstance('mainEditor').Commands.GetCommand('FitWindow').Execute();
}
</script>
RE: How to resize editor?