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>Using the CKEditor Read-Only API — CKEditor Sample</title>
|
|
|
10 |
<script src="../../ckeditor.js"></script>
|
|
|
11 |
<link rel="stylesheet" href="sample.css">
|
|
|
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 |
var editor;
|
|
|
16 |
|
|
|
17 |
// The instanceReady event is fired, when an instance of CKEditor has finished
|
|
|
18 |
// its initialization.
|
|
|
19 |
CKEDITOR.on( 'instanceReady', function( ev ) {
|
|
|
20 |
editor = ev.editor;
|
|
|
21 |
|
|
|
22 |
// Show this "on" button.
|
|
|
23 |
document.getElementById( 'readOnlyOn' ).style.display = '';
|
|
|
24 |
|
|
|
25 |
// Event fired when the readOnly property changes.
|
|
|
26 |
editor.on( 'readOnly', function() {
|
|
|
27 |
document.getElementById( 'readOnlyOn' ).style.display = this.readOnly ? 'none' : '';
|
|
|
28 |
document.getElementById( 'readOnlyOff' ).style.display = this.readOnly ? '' : 'none';
|
|
|
29 |
});
|
|
|
30 |
});
|
|
|
31 |
|
|
|
32 |
function toggleReadOnly( isReadOnly ) {
|
|
|
33 |
// Change the read-only state of the editor.
|
|
|
34 |
// https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#method-setReadOnly
|
|
|
35 |
editor.setReadOnly( isReadOnly );
|
|
|
36 |
}
|
|
|
37 |
|
|
|
38 |
</script>
|
|
|
39 |
</head>
|
|
|
40 |
<body>
|
|
|
41 |
<h1 class="samples">
|
|
|
42 |
<a href="index.html">CKEditor Samples</a> » Using the CKEditor Read-Only API
|
|
|
43 |
</h1>
|
|
|
44 |
<div class="warning deprecated">
|
|
|
45 |
This sample is not maintained anymore. Check out its <a href="https://ckeditor.com/docs/ckeditor4/latest/examples/readonly.html">brand new version in CKEditor Examples</a>.
|
|
|
46 |
</div>
|
|
|
47 |
<div class="description">
|
|
|
48 |
<p>
|
|
|
49 |
This sample shows how to use the
|
|
|
50 |
<code><a class="samples" href="https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_editor.html#method-setReadOnly">setReadOnly</a></code>
|
|
|
51 |
API to put editor into the read-only state that makes it impossible for users to change the editor contents.
|
|
|
52 |
</p>
|
|
|
53 |
<p>
|
|
|
54 |
For details on how to create this setup check the source code of this sample page.
|
|
|
55 |
</p>
|
|
|
56 |
</div>
|
|
|
57 |
<form action="sample_posteddata.php" method="post">
|
|
|
58 |
<p>
|
|
|
59 |
<textarea class="ckeditor" id="editor1" name="editor1" cols="100" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="https://ckeditor.com/">CKEditor</a>.</p></textarea>
|
|
|
60 |
</p>
|
|
|
61 |
<p>
|
|
|
62 |
<input id="readOnlyOn" onclick="toggleReadOnly();" type="button" value="Make it read-only" style="display:none">
|
|
|
63 |
<input id="readOnlyOff" onclick="toggleReadOnly( false );" type="button" value="Make it editable again" style="display:none">
|
|
|
64 |
</p>
|
|
|
65 |
</form>
|
|
|
66 |
<div id="footer">
|
|
|
67 |
<hr>
|
|
|
68 |
<p>
|
|
|
69 |
CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
|
|
|
70 |
</p>
|
|
|
71 |
<p id="copy">
|
|
|
72 |
Copyright © 2003-2021, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico
|
|
|
73 |
Knabben. All rights reserved.
|
|
|
74 |
</p>
|
|
|
75 |
</div>
|
|
|
76 |
</body>
|
|
|
77 |
</html>
|