placeholder.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <!--
  3. Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
  4. For licensing, see LICENSE.html or http://ckeditor.com/license
  5. -->
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <title>Placeholder Plugin &mdash; 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" />
  13. </head>
  14. <body>
  15. <h1 class="samples">
  16. CKEditor Sample &mdash; Using the Placeholder Plugin
  17. </h1>
  18. <div class="description">
  19. <p>
  20. This sample shows how to configure CKEditor instances to use the
  21. <strong>Placeholder</strong> plugin that lets you insert read-only elements
  22. into your content. To enter and modify read-only text, use the
  23. <strong>Create Placeholder</strong> button and its matching dialog window.
  24. </p>
  25. <p>
  26. To add a CKEditor instance that uses the <code>placeholder</code> plugin and a related
  27. <strong>Create Placeholder</strong> toolbar button, insert the following JavaScript
  28. call to your code:
  29. </p>
  30. <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
  31. {
  32. <strong>extraPlugins : 'placeholder',</strong>
  33. toolbar : [ [ 'Source', 'Bold' ], [<strong>'CreatePlaceholder'</strong>] ]
  34. });</pre>
  35. <p>
  36. Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
  37. the <code>&lt;textarea&gt;</code> element to be replaced with CKEditor.
  38. </p>
  39. </div>
  40. <!-- This <div> holds alert messages to be display in the sample page. -->
  41. <div id="alerts">
  42. <noscript>
  43. <p>
  44. <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
  45. support, like yours, you should still see the contents (HTML data) and you should
  46. be able to edit it normally, without a rich editor interface.
  47. </p>
  48. </noscript>
  49. </div>
  50. <form action="sample_posteddata.php" method="post">
  51. <p>
  52. <label for="editor1">
  53. CKEditor using the <code>placeholder</code> plugin with its default configuration:</label>
  54. <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is a [[sample placeholder]]. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;. &lt;/p&gt;</textarea>
  55. <script type="text/javascript">
  56. //<![CDATA[
  57. CKEDITOR.replace( 'editor1', {
  58. extraPlugins : 'placeholder',
  59. toolbar : [ [ 'Source', 'CreatePlaceholder' ] ]
  60. });
  61. //]]>
  62. </script>
  63. </p>
  64. <p>
  65. <input type="submit" value="Submit" />
  66. </p>
  67. </form>
  68. <div id="footer">
  69. <hr />
  70. <p>
  71. CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
  72. </p>
  73. <p id="copy">
  74. Copyright &copy; 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
  75. Knabben. All rights reserved.
  76. </p>
  77. </div>
  78. </body>
  79. </html>