Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
<!DOCTYPE html>
2
<!--
3
Copyright (c) 2003-2021, 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>ENTER Key Configuration &mdash; CKEditor Sample</title>
10
	<script src="../../../ckeditor.js"></script>
11
	<link href="../../../samples/old/sample.css" rel="stylesheet">
12
	<meta name="ckeditor-sample-name" content="Using the &quot;Enter&quot; key in CKEditor">
13
	<meta name="ckeditor-sample-group" content="Advanced Samples">
14
	<meta name="ckeditor-sample-description" content="Configuring the behavior of &lt;em&gt;Enter&lt;/em&gt; and &lt;em&gt;Shift+Enter&lt;/em&gt; keys.">
15
	<meta name="description" content="Try the latest sample of CKEditor 4 and learn more about customizing your WYSIWYG editor with endless possibilities.">
16
	<script>
17
 
18
		var editor;
19
 
20
		function changeEnter() {
21
			// If we already have an editor, let's destroy it first.
22
			if ( editor )
23
				editor.destroy( true );
24
 
25
			// Create the editor again, with the appropriate settings.
26
			editor = CKEDITOR.replace( 'editor1', {
27
				extraPlugins: 'enterkey',
28
				enterMode: Number( document.getElementById( 'xEnter' ).value ),
29
				shiftEnterMode: Number( document.getElementById( 'xShiftEnter' ).value )
30
			});
31
		}
32
 
33
		window.onload = changeEnter;
34
 
35
	</script>
36
</head>
37
<body>
38
	<h1 class="samples">
39
		<a href="../../../samples/old/index.html">CKEditor Samples</a> &raquo; ENTER Key Configuration
40
	</h1>
41
	<div class="warning deprecated">
42
		This sample is not maintained anymore. Check out its <a href="https://ckeditor.com/docs/ckeditor4/latest/examples/enterkey.html">brand new version in CKEditor Examples</a>.
43
	</div>
44
	<div class="description">
45
		<p>
46
			This sample shows how to configure the <em>Enter</em> and <em>Shift+Enter</em> keys
47
			to perform actions specified in the
48
			<a class="samples" href="https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-enterMode"><code>enterMode</code></a>
49
			and <a class="samples" href="https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-shiftEnterMode"><code>shiftEnterMode</code></a>
50
			parameters, respectively.
51
	 		You can choose from the following options:
52
		</p>
53
		<ul class="samples">
54
			<li><strong><code>ENTER_P</code></strong> &ndash; new <code>&lt;p&gt;</code> paragraphs are created;</li>
55
			<li><strong><code>ENTER_BR</code></strong> &ndash; lines are broken with <code>&lt;br&gt;</code> elements;</li>
56
			<li><strong><code>ENTER_DIV</code></strong> &ndash; new <code>&lt;div&gt;</code> blocks are created.</li>
57
		</ul>
58
		<p>
59
			The sample code below shows how to configure CKEditor to create a <code>&lt;div&gt;</code> block when <em>Enter</em> key is pressed.
60
		</p>
61
<pre class="samples">
62
CKEDITOR.replace( '<em>textarea_id</em>', {
63
	<strong>enterMode: CKEDITOR.ENTER_DIV</strong>
64
});</pre>
65
		<p>
66
			Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
67
			the <code>&lt;textarea&gt;</code> element to be replaced.
68
		</p>
69
	</div>
70
	<div style="float: left; margin-right: 20px">
71
		When <em>Enter</em> is pressed:<br>
72
		<select id="xEnter" onchange="changeEnter();">
73
			<option selected="selected" value="1">Create a new &lt;P&gt; (recommended)</option>
74
			<option value="3">Create a new &lt;DIV&gt;</option>
75
			<option value="2">Break the line with a &lt;BR&gt;</option>
76
		</select>
77
	</div>
78
	<div style="float: left">
79
		When <em>Shift+Enter</em> is pressed:<br>
80
		<select id="xShiftEnter" onchange="changeEnter();">
81
			<option value="1">Create a new &lt;P&gt;</option>
82
			<option value="3">Create a new &lt;DIV&gt;</option>
83
			<option selected="selected" value="2">Break the line with a &lt;BR&gt; (recommended)</option>
84
		</select>
85
	</div>
86
	<br style="clear: both">
87
	<form action="../../../samples/sample_posteddata.php" method="post">
88
		<p>
89
			<br>
90
			<textarea cols="80" id="editor1" name="editor1" rows="10">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;.</textarea>
91
		</p>
92
		<p>
93
			<input type="submit" value="Submit">
94
		</p>
95
	</form>
96
	<div id="footer">
97
		<hr>
98
		<p>
99
			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
100
		</p>
101
		<p id="copy">
102
			Copyright &copy; 2003-2021, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico
103
			Knabben. All rights reserved.
104
		</p>
105
	</div>
106
</body>
107
</html>