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>API Usage — CKEditor Sample</title>
|
|
|
10 |
<script src="../../ckeditor.js"></script>
|
|
|
11 |
<link href="sample.css" rel="stylesheet">
|
|
|
12 |
<meta name="description" content="Try the latest sample of CKEditor 4 and learn more about customizing your WYSIWYG editor with endless possibilities.">
|
|
|
13 |
<script>
|
|
|
14 |
|
|
|
15 |
// The instanceReady event is fired, when an instance of CKEditor has finished
|
|
|
16 |
// its initialization.
|
|
|
17 |
CKEDITOR.on( 'instanceReady', function( ev ) {
|
|
|
18 |
// Show the editor name and description in the browser status bar.
|
|
|
19 |
document.getElementById( 'eMessage' ).innerHTML = 'Instance <code>' + ev.editor.name + '<\/code> loaded.';
|
|
|
20 |
|
|
|
21 |
// Show this sample buttons.
|
|
|
22 |
document.getElementById( 'eButtons' ).style.display = 'block';
|
|
|
23 |
});
|
|
|
24 |
|
|
|
25 |
function InsertHTML() {
|
|
|
26 |
// Get the editor instance that we want to interact with.
|
|
|
27 |
var editor = CKEDITOR.instances.editor1;
|
|
|
28 |
var value = document.getElementById( 'htmlArea' ).value;
|
|
|
29 |
|
|
|
30 |
// Check the active editing mode.
|
|
|
31 |
if ( editor.mode == 'wysiwyg' )
|
|
|
32 |
{
|
|
|
33 |
// Insert HTML code.
|
|
|
34 |
// https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#method-insertHtml
|
|
|
35 |
editor.insertHtml( value );
|
|
|
36 |
}
|
|
|
37 |
else
|
|
|
38 |
alert( 'You must be in WYSIWYG mode!' );
|
|
|
39 |
}
|
|
|
40 |
|
|
|
41 |
function InsertText() {
|
|
|
42 |
// Get the editor instance that we want to interact with.
|
|
|
43 |
var editor = CKEDITOR.instances.editor1;
|
|
|
44 |
var value = document.getElementById( 'txtArea' ).value;
|
|
|
45 |
|
|
|
46 |
// Check the active editing mode.
|
|
|
47 |
if ( editor.mode == 'wysiwyg' )
|
|
|
48 |
{
|
|
|
49 |
// Insert as plain text.
|
|
|
50 |
// https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#method-insertText
|
|
|
51 |
editor.insertText( value );
|
|
|
52 |
}
|
|
|
53 |
else
|
|
|
54 |
alert( 'You must be in WYSIWYG mode!' );
|
|
|
55 |
}
|
|
|
56 |
|
|
|
57 |
function SetContents() {
|
|
|
58 |
// Get the editor instance that we want to interact with.
|
|
|
59 |
var editor = CKEDITOR.instances.editor1;
|
|
|
60 |
var value = document.getElementById( 'htmlArea' ).value;
|
|
|
61 |
|
|
|
62 |
// Set editor contents (replace current contents).
|
|
|
63 |
// https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#method-setData
|
|
|
64 |
editor.setData( value );
|
|
|
65 |
}
|
|
|
66 |
|
|
|
67 |
function GetContents() {
|
|
|
68 |
// Get the editor instance that you want to interact with.
|
|
|
69 |
var editor = CKEDITOR.instances.editor1;
|
|
|
70 |
|
|
|
71 |
// Get editor contents
|
|
|
72 |
// https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#method-getData
|
|
|
73 |
alert( editor.getData() );
|
|
|
74 |
}
|
|
|
75 |
|
|
|
76 |
function ExecuteCommand( commandName ) {
|
|
|
77 |
// Get the editor instance that we want to interact with.
|
|
|
78 |
var editor = CKEDITOR.instances.editor1;
|
|
|
79 |
|
|
|
80 |
// Check the active editing mode.
|
|
|
81 |
if ( editor.mode == 'wysiwyg' )
|
|
|
82 |
{
|
|
|
83 |
// Execute the command.
|
|
|
84 |
// https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#method-execCommand
|
|
|
85 |
editor.execCommand( commandName );
|
|
|
86 |
}
|
|
|
87 |
else
|
|
|
88 |
alert( 'You must be in WYSIWYG mode!' );
|
|
|
89 |
}
|
|
|
90 |
|
|
|
91 |
function CheckDirty() {
|
|
|
92 |
// Get the editor instance that we want to interact with.
|
|
|
93 |
var editor = CKEDITOR.instances.editor1;
|
|
|
94 |
// Checks whether the current editor contents present changes when compared
|
|
|
95 |
// to the contents loaded into the editor at startup
|
|
|
96 |
// https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#method-checkDirty
|
|
|
97 |
alert( editor.checkDirty() );
|
|
|
98 |
}
|
|
|
99 |
|
|
|
100 |
function ResetDirty() {
|
|
|
101 |
// Get the editor instance that we want to interact with.
|
|
|
102 |
var editor = CKEDITOR.instances.editor1;
|
|
|
103 |
// Resets the "dirty state" of the editor (see CheckDirty())
|
|
|
104 |
// https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#method-resetDirty
|
|
|
105 |
editor.resetDirty();
|
|
|
106 |
alert( 'The "IsDirty" status has been reset' );
|
|
|
107 |
}
|
|
|
108 |
|
|
|
109 |
function Focus() {
|
|
|
110 |
CKEDITOR.instances.editor1.focus();
|
|
|
111 |
}
|
|
|
112 |
|
|
|
113 |
function onFocus() {
|
|
|
114 |
document.getElementById( 'eMessage' ).innerHTML = '<b>' + this.name + ' is focused </b>';
|
|
|
115 |
}
|
|
|
116 |
|
|
|
117 |
function onBlur() {
|
|
|
118 |
document.getElementById( 'eMessage' ).innerHTML = this.name + ' lost focus';
|
|
|
119 |
}
|
|
|
120 |
|
|
|
121 |
</script>
|
|
|
122 |
|
|
|
123 |
</head>
|
|
|
124 |
<body>
|
|
|
125 |
<h1 class="samples">
|
|
|
126 |
<a href="index.html">CKEditor Samples</a> » Using CKEditor JavaScript API
|
|
|
127 |
</h1>
|
|
|
128 |
<div class="warning deprecated">
|
|
|
129 |
This sample is not maintained anymore. Check out its <a href="https://ckeditor.com/docs/ckeditor4/latest/examples/api.html">brand new version in CKEditor Examples</a>.
|
|
|
130 |
</div>
|
|
|
131 |
<div class="description">
|
|
|
132 |
<p>
|
|
|
133 |
This sample shows how to use the
|
|
|
134 |
<a class="samples" href="https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html">CKEditor JavaScript API</a>
|
|
|
135 |
to interact with the editor at runtime.
|
|
|
136 |
</p>
|
|
|
137 |
<p>
|
|
|
138 |
For details on how to create this setup check the source code of this sample page.
|
|
|
139 |
</p>
|
|
|
140 |
</div>
|
|
|
141 |
|
|
|
142 |
<!-- This <div> holds alert messages to be display in the sample page. -->
|
|
|
143 |
<div id="alerts">
|
|
|
144 |
<noscript>
|
|
|
145 |
<p>
|
|
|
146 |
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
|
|
|
147 |
support, like yours, you should still see the contents (HTML data) and you should
|
|
|
148 |
be able to edit it normally, without a rich editor interface.
|
|
|
149 |
</p>
|
|
|
150 |
</noscript>
|
|
|
151 |
</div>
|
|
|
152 |
<form action="../../../samples/sample_posteddata.php" method="post">
|
|
|
153 |
<textarea cols="100" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="https://ckeditor.com/">CKEditor</a>.</p></textarea>
|
|
|
154 |
|
|
|
155 |
<script>
|
|
|
156 |
// Replace the <textarea id="editor1"> with an CKEditor instance.
|
|
|
157 |
CKEDITOR.replace( 'editor1', {
|
|
|
158 |
on: {
|
|
|
159 |
focus: onFocus,
|
|
|
160 |
blur: onBlur,
|
|
|
161 |
|
|
|
162 |
// Check for availability of corresponding plugins.
|
|
|
163 |
pluginsLoaded: function( evt ) {
|
|
|
164 |
var doc = CKEDITOR.document, ed = evt.editor;
|
|
|
165 |
if ( !ed.getCommand( 'bold' ) )
|
|
|
166 |
doc.getById( 'exec-bold' ).hide();
|
|
|
167 |
if ( !ed.getCommand( 'link' ) )
|
|
|
168 |
doc.getById( 'exec-link' ).hide();
|
|
|
169 |
}
|
|
|
170 |
}
|
|
|
171 |
});
|
|
|
172 |
</script>
|
|
|
173 |
|
|
|
174 |
<p id="eMessage">
|
|
|
175 |
</p>
|
|
|
176 |
|
|
|
177 |
<div id="eButtons" style="display: none">
|
|
|
178 |
<input id="exec-bold" onclick="ExecuteCommand('bold');" type="button" value="Execute "bold" Command">
|
|
|
179 |
<input id="exec-link" onclick="ExecuteCommand('link');" type="button" value="Execute "link" Command">
|
|
|
180 |
<input onclick="Focus();" type="button" value="Focus">
|
|
|
181 |
<br><br>
|
|
|
182 |
<input onclick="InsertHTML();" type="button" value="Insert HTML">
|
|
|
183 |
<input onclick="SetContents();" type="button" value="Set Editor Contents">
|
|
|
184 |
<input onclick="GetContents();" type="button" value="Get Editor Contents (HTML)">
|
|
|
185 |
<br>
|
|
|
186 |
<textarea cols="100" id="htmlArea" rows="3"><h2>Test</h2><p>This is some <a href="/Test1.html">sample</a> HTML code.</p></textarea>
|
|
|
187 |
<br>
|
|
|
188 |
<br>
|
|
|
189 |
<input onclick="InsertText();" type="button" value="Insert Text">
|
|
|
190 |
<br>
|
|
|
191 |
<textarea cols="100" id="txtArea" rows="3"> First line with some leading whitespaces.
|
|
|
192 |
|
|
|
193 |
Second line of text preceded by two line breaks.</textarea>
|
|
|
194 |
<br>
|
|
|
195 |
<br>
|
|
|
196 |
<input onclick="CheckDirty();" type="button" value="checkDirty()">
|
|
|
197 |
<input onclick="ResetDirty();" type="button" value="resetDirty()">
|
|
|
198 |
</div>
|
|
|
199 |
</form>
|
|
|
200 |
<div id="footer">
|
|
|
201 |
<hr>
|
|
|
202 |
<p>
|
|
|
203 |
CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
|
|
|
204 |
</p>
|
|
|
205 |
<p id="copy">
|
|
|
206 |
Copyright © 2003-2021, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico
|
|
|
207 |
Knabben. All rights reserved.
|
|
|
208 |
</p>
|
|
|
209 |
</div>
|
|
|
210 |
</body>
|
|
|
211 |
</html>
|