0

我在我的項目中使用CKEditor,我有要求在頁面上打印ckeditor內容,所以我想限制ckeditor的高度,所以我給高度爲220px和使用溢出刪除滾動條:隱藏,但是當用戶去ckeditor區域結束並按下輸入時,內容增加而沒有滾動條選項。CKEDITOR自動增加內容高度時使用編輯器底部輸入

有什麼辦法可以限制ckeditor中的內容行數?

下面是我的CKEditor代碼:

CKEDITOR.replace('summaryEditor', 
    { 
     toolbar: 
     [    
      { name: 'customToolBar', items: ['Bold', 'Italic', 'Underline', 'JustifyLeft', 'JustifyCenter', 'Font', 'FontSize', 'NumberedList', 'BulletedList', 'Link', 'Image', 'Table', 'Source', 'questions'] } 
     ], 
     height: '220px', 
     resize_enabled: false, 
     contentsCss: 'body {overflow:hidden;}', 
     autoGrow_onStartup: false, 
     extraPlugins: 'questions', 
     removePlugins: 'elementspath' 
    }); 

回答

0

自動增長的插件是不是3個默認的一部分建立CKEditor的,基本的,標準還是滿。所以我不確定你是如何安裝並啓用的,如果你不想要它。

但是,如果您只是將'autogrow'添加到removePlugins列表中,它應該停止。

但是,您的身高設置應該覆蓋編輯器的內容高度。我只是將高度設置爲100,並且工作正常。

CKEDITOR.replace('editor', { 
    height: 100 
    }); 

這裏是演示plnkr: http://plnkr.co/edit/lsFaT1CMMeDePnjVc5RD?p=preview

相關問題