The forum operates in read-only mode. Please head to StackOverflow for support.
CKEDITOR.on(""instanceReady"", function (ev) { var editorCKE = CKEDITOR.instances.<My_Editor>; editorCKE.on('key', function(keyEvent) { keyEvent.cancel(); }); CKEDITOR.replace('<My_Editor>'); });
config("toolbarCanCollapse") = false config("toolbarStartupExpanded") = false
How about setting the textarea to disabled?
$('textarea').attr('disabled', 'disabled');
<style> table.cke_editor tr:first-child span.cke_toolbar { display:none; } </style>
<script> $('table.cke_editor tr:first-child span.cke_toolbar').css('display', 'block'); </script>
<textarea id="editor1" name="editor1"></textarea> <script> CKEDITOR.replace('editor1'); CKEDITOR.config.readOnly = true; </script>
Re: How to make CKEditor readonly ?
I'm stating that there's a simple solution that also provides better performance than your requested solution.
Re: How to make CKEditor readonly ?
To avoid possible uses of the buttons also have hidden and locked the toolbar.
Re: How to make CKEditor readonly ?
How about setting the textarea to disabled?
Re: How to make CKEditor readonly ?
with the disabled part above it is like a reader.
i use cke for a self writen webmail and i go from read to reply/forward dynamicly so no page refresh, i use
Re: How to make CKEditor readonly ?
config.readOnly = true;
But i want to change it with js or asp.net, but that seems to be broken.
Re: How to make CKEditor readonly ?