开发者

Remove status bar from CKEditor

开发者 https://www.devze.com 2022-12-15 05:31 出处:网络
The CKEditor website is somewhat lacking; can you tell me how to remove the status 开发者_如何学运维bar (\'body ul li ...\') from CKEditor?

The CKEditor website is somewhat lacking; can you tell me how to remove the status 开发者_如何学运维bar ('body ul li ...') from CKEditor?

There is a list of HTML at the bottom of the editor - body p ul li - representing how the typed text will be generated and I want to remove this list.


Answer is here: http://cksource.com/forums/viewtopic.php?p=42512&sid=5e2f0367542c8dc9468e6addb20d8d70#p42512

config.removePlugins = 'elementspath';
config.resize_enabled = false;


Like this, for example:

CKEDITOR.appendTo('container', {
    removePlugins: 'elementspath' 
});

As mentioned by Jason below, you might also want to remove the bar completely using:

CKEDITOR.appendTo('container', {
    removePlugins: 'elementspath',
    resize_enabled: false
});
0

精彩评论

暂无评论...
验证码 换一张
取 消