1 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
4 For licensing, see LICENSE.html or http://ckeditor.com/license
6 <html xmlns=
"http://www.w3.org/1999/xhtml">
8 <title>AutoGrow Plugin
— CKEditor Sample
</title>
9 <meta content=
"text/html; charset=utf-8" http-equiv=
"content-type" />
10 <script type=
"text/javascript" src=
"../ckeditor.js"></script>
11 <script src=
"sample.js" type=
"text/javascript"></script>
12 <link href=
"sample.css" rel=
"stylesheet" type=
"text/css" />
16 CKEditor Sample
— Using AutoGrow Plugin
18 <div class=
"description">
20 This sample shows how to configure CKEditor instances to use the
21 <strong>autogrow
</strong> plugin that lets the editor window expand and shrink
22 depending on the amount and size of content entered in the editing area.
25 In its default implementation the
<strong>AutoGrow feature
</strong> can expand the
26 CKEditor window infinitely in order to avoid introducing scrollbars to the editing area.
29 It is also possible to set a maximum height for the editor window. Once CKEditor
30 editing area reaches the value in pixels specified in the
<code>autoGrow_maxHeight
</code>
31 attribute, scrollbars will be added and the editor window will no longer expand.
34 To add a CKEditor instance using the
<strong>autogrow
</strong> plugin and its
35 <code>autoGrow_maxHeight
</code> attribute, insert the following JavaScript call to your code:
37 <pre class=
"samples">CKEDITOR.replace( '
<em>textarea_id
</em>',
39 <strong>extraPlugins : 'autogrow',
</strong>
40 autoGrow_maxHeight :
800,
41 // Remove the resize plugin, as it doesn't make sense to use it in conjunction with the AutoGrow plugin.
42 removePlugins : 'resize'
45 Note that
<code><em>textarea_id
</em></code> in the code above is the
<code>id
</code> attribute of
46 the
<code><textarea
></code> element to be replaced with CKEditor. The maximum height should
50 <!-- This <div> holds alert messages to be display in the sample page. -->
54 <strong>CKEditor requires JavaScript to run
</strong>. In a browser with no JavaScript
55 support, like yours, you should still see the contents (HTML data) and you should
56 be able to edit it normally, without a rich editor interface.
60 <form action=
"sample_posteddata.php" method=
"post">
63 CKEditor using the
<strong>autogrow
</strong> plugin with its default configuration:
</label>
64 <textarea cols=
"80" id=
"editor1" name=
"editor1" rows=
"10"><p
>This is some
<strong
>sample text
</strong
>. You are using
<a
href=
"http://ckeditor.com/">CKEditor
</a
>.
</p
></textarea>
65 <script type=
"text/javascript">
68 CKEDITOR.replace( 'editor1', {
69 extraPlugins : 'autogrow',
70 removePlugins : 'resize'
78 CKEditor using the
<strong>autogrow
</strong> plugin with maximum height set to
400:
</label>
79 <textarea cols=
"80" id=
"editor2" name=
"editor2" rows=
"10"><p
>This is some
<strong
>sample text
</strong
>. You are using
<a
href=
"http://ckeditor.com/">CKEditor
</a
>.
</p
></textarea>
80 <script type=
"text/javascript">
83 CKEDITOR.replace( 'editor2', {
84 extraPlugins : 'autogrow',
85 autoGrow_maxHeight :
400,
86 removePlugins : 'resize'
93 <input type=
"submit" value=
"Submit" />
99 CKEditor - The text editor for the Internet -
<a class=
"samples" href=
"http://ckeditor.com/">http://ckeditor.com
</a>
102 Copyright
© 2003-
2011,
<a class=
"samples" href=
"http://cksource.com/">CKSource
</a> - Frederico
103 Knabben. All rights reserved.