2014-02-25 73 views
2

在CKEDITOR上,當我選擇一個文本時,會出現一個小編輯器。CKEDITOR - 在行文本編輯器中禁用

我需要禁用這個內聯編輯器。

CKEDITOR http://devsal.madnezz.com.br/v2/img/ckeditor.png

我曾試圖改變CKEDITOR.editorConfig,但沒有成功一些東西。

在此先感謝。

+0

您使用CKEditor 4嗎?你是否啓用內聯編輯? – epascarello

+0

是的,CKEditor4。那麼,在關於編輯的config.js中,我有這樣一行: '{name:'editing',groups:['find','selection','spellchecker']}'。在這裏我必須改變嗎? – MarceloMadnezz

+0

如果在配置中添加[disableAutoInline:true](http://docs.ckeditor.com/#!/api/CKEDITOR-cfg-disableAutoInline)會有所幫助 – epascarello

回答

2

我在配置上添加了以下信息,它工作。

config.removePlugins = 'floatingspace,panelbutton,panel,floatpanel,floating-tools,contextmenu,richcombo'; 
1

config.removePlugins = 'floating-tools';應該足夠了。