Summernote编辑不显示滚动条

时间:2015-05-21 17:42:45

标签: javascript jquery twitter-bootstrap summernote

我在bootstrap模式中使用summernote并按如下方式设置:

 $('.summernote').summernote({
     toolbar: [
        ['style', ['bold', 'italic', 'underline', 'clear','fontname']],
        ['color', ['color']],
        ['fontsize', ['fontsize']],
        ['height', ['height']],
        ['style', ['style']],
        ['para', ['ul', 'ol', 'paragraph']],  
        ['misc', ['fullscreen','undo','redo']],
        ['table', ['table']]
    ]
    }); 

问题是,当我将文本输入编辑区域并进入编辑区域底部以下时,不显示滚动条,如下所示:

enter image description here

如何显示滚动条并将文本限制在线条内?

3 个答案:

答案 0 :(得分:1)

Documentation for Summernote说:

  

height:String / Number(可选)

     

设置编辑器高度(例如300px)

     

默认为:null

所以,解决方案是:

$('.summernote').summernote({
    height: '300px',
    toolbar: [
        ['style', ['bold', 'italic', 'underline', 'clear','fontname']],
        ['color', ['color']],
        ['fontsize', ['fontsize']],
        ['height', ['height']],
        ['style', ['style']],
        ['para', ['ul', 'ol', 'paragraph']],  
        ['misc', ['fullscreen','undo','redo']],
        ['table', ['table']]
    ]
}); 

答案 1 :(得分:0)

你可能想试试这个

.bootstrap-modal-selector {
   overflow-y:scroll;
}

答案 2 :(得分:0)

我在CSS上使用它:

    .note-editable.panel-body {
            overflow-y: scroll;
    }

它对我有用