Hi! all
I am using ckeditor in my ipad application, inside, I use a UIWebView to load the demo.html and it displays well and the function is work properly.
However, I got a question about why the textarea will autogrow by default? and I can't find a way to change this setting(Even set the autoGrow_maxHeight). All I want to do is fixing the height of the textarea even the user input is keep pressing the enter(so user can always see the toolbar).
Many thanks~

What CKEditor and iOS version
What CKEditor and iOS version are you using? This sort of information is very important when submitting a possible bug. It might be related to this issue (iOS has some sizing issues), but more info would be appreciated. Just so you know, CKEditor 5 will focus on mobiles.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
re: version of ios and ckeditor
Hi~ FYI.
IOS version: 6.1
CKEditor version: Not sure the version, its the one download in https://github.com/insanoid/iOS-HTMLTextEditor/tree/master/iOS-HTMLTextEditor/CKEditor.
I think it is not related to the 10461, and the problem i am facing is, the textarea replaced by CKEditor js, is autogrow when the content is longer than the textarea rows, so the ckeditor is getting bigger which affects the layout under the ckeditor on the ipad uiwebview. I want the textarea keeps it height and scrollbar appears in the textarea but it isn't. Can you help please?
You are using some sort of
You are using some sort of third-party integration that was last modified 2 (!) years ago. This is not something that was created by us and that we support.
Anyway, use the latest CKEditor version that is downloaded from the official download page instead and see if you are still having issues.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re
Ok,the autogrow problem is fixed after using the plugin- divarea,
but after applying the plugin,the functions such as changing color, font size and font type can't work on selected text(bold .italic are work) ,is there any extra config required? Please help.
many thanks!
We still do not know which
We still do not know which CKEditor version and installation package you are using... Not to mention your configuration or environment.
CKEditor now comes in three different installation presets (Basic, Standard, Full) that differ in the number of plugins included. See the comparison here, try using the Full preset or add missing plugins through CKBuilder.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re:
Hi, Anna,
I just downloaded the latest CKEditor and run in ipad, the problem now is the editor losing selection focus when clicking the font size, font colour(and all editor dropdown like font type...,but not in bullet list, numbered list...) this problem is not exist in iframe, and is it related to focusmanager or div?
The plugin i have:
about
basicstyles
button
clipboard
colorbutton
colordialog
dialog
dialogui
div
divarea
enterkey
entities
fakeobjects
floatingspace
floatpanel
font
image
imageresize
indent
indentlist
link
list
listblock
panel
panelbutton
removeformat
richcombo
textselection
toolbar
uicolor
undo
wysiwygarea
Many thanks~
There are a few bugs for iOS
There are a few bugs for iOS reported in our tracker. Do you think this is the same as #11405 or #10180?
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Editor Body automatically resizing when receiving focus
I have searched high and low for an answer on this so I'm hoping someone can help. I am using the latest version of ckeditor on a Windows 8 development machine. I do have the autogrow pluging but I have disabled for the scenario here as well as set the max height out of pure desperation. I have the resize-enabled set to false as well. Here is my very basic config change...
CKEDITOR.replace('NewComment',{
toolbar:'Basic',
width:750,
height:80,
removePlugins:'elementspath,autoGrow',
autoParagraph:false,
resize_enabled:false
});
Anyway, when the page loads, the editor window is set to 750x80 as instructed with the proper menu items and configuration items being managed properly except when I click into the editor window. Immediately upon clicking into the editor window it goes fro 80 pixels high to 120 or so pixels high. Can someone please explain to me why it does this or if there is another plugin or configuration change I need to make in order to make it stop?