Can I use CKEditor without a toolbar?

后端 未结 8 1515
迷失自我
迷失自我 2020-12-14 07:35

(Possible duplicate: CKEditor - No toolbars)

I\'d like to create a CKEditor instance without a toolbar. I tried defining an empty toolbar to use in the instance\'s c

8条回答
  •  隐瞒了意图╮
    2020-12-14 08:07

    In CKEditor 4.9.2:

    When you instanciate the editor, set toolbar option:

    CKEDITOR.replace( 'editor1', {
        ...
        toolbar: []
    });
    

提交回复
热议问题