国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

104 satır
4.2KB

  1. <!DOCTYPE html>
  2. <!--
  3. Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  4. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  5. -->
  6. <html lang="en">
  7. <head>
  8. <meta charset="utf-8">
  9. <title>AutoGrow Plugin &mdash; CKEditor Sample</title>
  10. <script src="../../../ckeditor.js"></script>
  11. <link rel="stylesheet" href="../../../samples/old/sample.css">
  12. <meta name="ckeditor-sample-name" content="AutoGrow plugin">
  13. <meta name="ckeditor-sample-group" content="Plugins">
  14. <meta name="ckeditor-sample-description" content="Using the AutoGrow plugin in order to make the editor grow to fit the size of its content.">
  15. <meta name="description" content="Try the latest sample of CKEditor 4 and learn more about customizing your WYSIWYG editor with endless possibilities.">
  16. </head>
  17. <body>
  18. <h1 class="samples">
  19. <a href="../../../samples/old/index.html">CKEditor Samples</a> &raquo; Using AutoGrow Plugin
  20. </h1>
  21. <div class="warning deprecated">
  22. This sample is not maintained anymore. Check out its <a href="https://ckeditor.com/docs/ckeditor4/latest/examples/autogrow.html">brand new version in CKEditor Examples</a>.
  23. </div>
  24. <div class="description">
  25. <p>
  26. This sample shows how to configure CKEditor instances to use the
  27. <strong>AutoGrow</strong> (<code>autogrow</code>) plugin that lets the editor window expand
  28. and shrink depending on the amount and size of content entered in the editing area.
  29. </p>
  30. <p>
  31. In its default implementation the <strong>AutoGrow feature</strong> can expand the
  32. CKEditor window infinitely in order to avoid introducing scrollbars to the editing area.
  33. </p>
  34. <p>
  35. It is also possible to set a maximum height for the editor window. Once CKEditor
  36. editing area reaches the value in pixels specified in the
  37. <code><a class="samples" href="https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-autoGrow_maxHeight">autoGrow_maxHeight</a></code>
  38. configuration setting, scrollbars will be added and the editor window will no longer expand.
  39. </p>
  40. <p>
  41. To add a CKEditor instance using the <code>autogrow</code> plugin and its
  42. <code>autoGrow_maxHeight</code> attribute, insert the following JavaScript call to your code:
  43. </p>
  44. <pre class="samples">
  45. CKEDITOR.replace( '<em>textarea_id</em>', {
  46. <strong>extraPlugins: 'autogrow',</strong>
  47. autoGrow_maxHeight: 800,
  48. // Remove the Resize plugin as it does not make sense to use it in conjunction with the AutoGrow plugin.
  49. removePlugins: 'resize'
  50. });</pre>
  51. <p>
  52. Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
  53. the <code>&lt;textarea&gt;</code> element to be replaced with CKEditor. The maximum height should
  54. be given in pixels.
  55. </p>
  56. </div>
  57. <form action="../../../samples/sample_posteddata.php" method="post">
  58. <p>
  59. <label for="editor1">
  60. CKEditor using the <code>autogrow</code> plugin with its default configuration:
  61. </label>
  62. <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="https://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
  63. <script>
  64. CKEDITOR.replace( 'editor1', {
  65. extraPlugins: 'autogrow',
  66. removePlugins: 'resize'
  67. });
  68. </script>
  69. </p>
  70. <p>
  71. <label for="editor2">
  72. CKEditor using the <code>autogrow</code> plugin with maximum height set to 400 pixels:
  73. </label>
  74. <textarea cols="80" id="editor2" name="editor2" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="https://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
  75. <script>
  76. CKEDITOR.replace( 'editor2', {
  77. extraPlugins: 'autogrow',
  78. autoGrow_maxHeight: 400,
  79. removePlugins: 'resize'
  80. });
  81. </script>
  82. </p>
  83. <p>
  84. <input type="submit" value="Submit">
  85. </p>
  86. </form>
  87. <div id="footer">
  88. <hr>
  89. <p>
  90. CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
  91. </p>
  92. <p id="copy">
  93. Copyright &copy; 2003-2020, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico
  94. Knabben. All rights reserved.
  95. </p>
  96. </div>
  97. </body>
  98. </html>