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 — 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 — 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><textarea></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"><p>This is a [[sample placeholder]]. You are using <a href="http://ckeditor.com/">CKEditor</a>. </p></textarea>
|
---|
55 | <script type="text/javascript">
|
---|
56 | //<![CDATA[
|
---|
57 |
|
---|
58 | CKEDITOR.replace( 'editor1', {
|
---|
59 | extraPlugins : 'placeholder',
|
---|
60 | toolbar : [ [ 'Source', 'CreatePlaceholder' ] ]
|
---|
61 | });
|
---|
62 |
|
---|
63 | //]]>
|
---|
64 | </script>
|
---|
65 | </p>
|
---|
66 | <p>
|
---|
67 | <input type="submit" value="Submit" />
|
---|
68 | </p>
|
---|
69 | </form>
|
---|
70 | <div id="footer">
|
---|
71 | <hr />
|
---|
72 | <p>
|
---|
73 | CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
|
---|
74 | </p>
|
---|
75 | <p id="copy">
|
---|
76 | Copyright © 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
|
---|
77 | Knabben. All rights reserved.
|
---|
78 | </p>
|
---|
79 | </div>
|
---|
80 | </body>
|
---|
81 | </html>
|
---|