Opened 8 years ago
Closed 8 years ago
#14918 closed Bug (invalid)
inline CKEditor with extraPlugins: 'autogrow'
Reported by: | Satish.Trivedi | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
Steps to reproduce
- textarea input control for multi-line input Or Div with applying texarea class
- Applying inline CKEditor with extraPlugins: 'autogrow',
Expected result
We are trying to provide autogrow into this
Actual result
autogrow is not applied Code as below:- CKEDITOR.inline(editableBlocks[i].id, {
extraPlugins: 'autogrow', removePlugins: 'resize', width: 800, autogrow_maxHeight: 1000, autoGrow_minHeight: 500, autoGrow_onStartup: false, enterMode: CKEDITOR.ENTER_BR, fullPage: false
});
Please see: https://github.com/ckeditor/ckeditor-dev/blob/master/plugins/autogrow/plugin.js#L16
Autogrow only makes sense for classic (iframe) editor. For inline, it grows automatically, unless you have very special CSS.