如何在CKEditor 4中禁用编辑模式? (直列编辑)

时间:2015-12-15 19:25:41

标签: ckeditor ckeditor4.x

我需要在内联模式下禁用编辑模式。

我尝试使用此代码

CKEDITOR.disableAutoInline = false;
                var editor = CKEDITOR.inline(elm[0], {
                    extraAllowedContent: '*',
                    toolbarStartupExpanded : false,
                    toolbarCanCollapse  : false,
                    startupFocus: false,                    
                });

                editor.on('instanceReady', function (ev) {
                    var ed = ev.editor;
                    ed.setReadOnly(true);
                    editor.removeListener();
                });
                editor.on('focus', function (event) {
                    return false;
                });
                editor.on('blur', function () {
                    return false;
                });

此代码隐藏工具栏,但菜单(右键单击)已启用,我需要完全禁用(只读模式)“渲染内容”,但我需要所有插件,包括“代码”和引用。 (如果我使用“removePlugin”工具栏渲染“,我的插件代码,引用等不能使我的代码正确)任何想法?

1 个答案:

答案 0 :(得分:0)

只需添加:

config.readOnly = true;

参考:https://ckeditor.com/docs/ckeditor4/latest/guide/dev_readonly.html