G'day,
Just trying to setup AutoGrow. It works perfectly fine, but only once you are inside the editor. If I intialize the editor with a bunch of stuff that is too big, it doesn't AutoGrow until I focus the editor.
E.g.
<textarea id="editor1"> loads of content, perhaps some huge images <img src="/foo.jpg" /> </textarea>
CKEDITOR.replace('editor1', { extraPlugins: 'autogrow', removePlugins: 'resize' });
I can whip up a quick live example page if people don't really understand what I mean.
I've tried to manually trigger some kind of autogrow even on page load, but not really getting anywhere.
Just trying to setup AutoGrow. It works perfectly fine, but only once you are inside the editor. If I intialize the editor with a bunch of stuff that is too big, it doesn't AutoGrow until I focus the editor.
E.g.
<textarea id="editor1"> loads of content, perhaps some huge images <img src="/foo.jpg" /> </textarea>
CKEDITOR.replace('editor1', { extraPlugins: 'autogrow', removePlugins: 'resize' });
I can whip up a quick live example page if people don't really understand what I mean.
I've tried to manually trigger some kind of autogrow even on page load, but not really getting anywhere.
Re: AutoGrow on init
For those interested, http://dev.ckeditor.com/ticket/6161 already existed in regards to this issue.
Re: AutoGrow on init
Thanks tigris, 'trivial' update or not, its just made an instant feature improvement to what I'm working on.
Re: AutoGrow on init