当boostrap模态上的summernote时,不能下拉

时间:2016-07-04 07:52:22

标签: html css twitter-bootstrap summernote

我在bootstrap模式上使用summernote。但是当点击工具栏上的下拉项时,下拉菜单没有显示在正确的位置,甚至没有退出下拉DOM.I'将显示下面的图片: enter image description here

我在summernote github问题列表和stackoverflow中搜索了很长时间。我尝试添加" dialogsInBody:true",但没有工作。任何人都可以帮我解决这个问题。谢谢。 !

2 个答案:

答案 0 :(得分:1)

使用$('。dropdown-toggle')。dropdown();

答案 1 :(得分:1)

尝试一下。在这里工作正常。

callbacks: {
        onInit: function() {
            //when inside a modal, re-link the dropdown
            var thisNote = $(this);

            if(thisNote.closest('.modal').length>0){
                thisNote.next().find('.dropdown-toggle').dropdown();
            }

        }
    }