Summernote Modals锁定在纯Bootstrap模态中

时间:2014-02-14 17:55:16

标签: twitter-bootstrap summernote

是否有一种已知的方法可以使summernote模式从bootstrap模态中突破?


我有一个普通的模态,里面有一个summernote元素,没什么特别的。

当我使用summernote功能时,如果我在boostrap模式中使用summernote,这就是我得到的:

enter image description here

JS:

$('#dropper').on( "show.bs.modal", function() {
    $('#dropping').summernote({
        height: 300
    });
})

HTML:

<div id="dropper" class="modal fade" tabindex="-1" data-backdrop="static" role="dialog" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-body">
                <div id="dropping">text...</div>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default pull-left">
                    <span class='fa fa-paperclip '></span>
                    Attach Digital Assets
                </button>
                <div class="btn-group">
                    <button type="button" class="btn btn-default opacity75" class="close" data-dismiss="modal">
                        &times; Cancel
                    </button>
                    <button type="button" class="btn btn-warning" href="javascript:postDrop()">
                        Post Status Update
                        <span class='fa fa-bullhorn '></span>
                    </button>
                </div>
            </div>
        </div>
    </div>
</div>

完成Bootply: http://bootply.com/113808

6 个答案:

答案 0 :(得分:15)

使用summernote 0.6.13+尝试使用dialogsInBody-Parameter初始化:

$('#dropping').summernote({
    dialogsInBody: true
});

答案 1 :(得分:3)

我有同样的问题,并且被推迟了,提出了这个解决方案(基本上将summernote模式转换为'普通'div,而不是显式模态,即删除类'模态'): -

summernote.js(编辑完整档案): -

查找以下行并更改为: -

(2922 approx.) var tplImageDialog = function () {
    return '<div class="note-image-dialog" aria-hidden="false" style="z-index:9999">' +
             '<div class="modal-dialog">' +
               '<div class="modal-content">' +
                 '<div class="modal-header">' +
                   '<button type="button" class="close-summernote-dialog" aria-hidden="true" tabindex="-1">&times;</button>' +

(2946 approx.) var tplLinkDialog = function () {
    return '<div class="note-link-dialog" aria-hidden="false" style="z-index:9999">' +
             '<div class="modal-dialog">' +
               '<div class="modal-content">' +
                 '<div class="modal-header">' +
                   '<button type="button" class="close-summernote-dialog" aria-hidden="true" tabindex="-1">&times;</button>' +

(2981 approx.) var tplVideoDialog = function () {
    return '<div class="note-video-dialog" aria-hidden="false" style="z-index:9999">' +
             '<div class="modal-dialog">' +
               '<div class="modal-content">' +
                 '<div class="modal-header">' +
                   '<button type="button" class="close-summernote-dialog" aria-hidden="true" tabindex="-1">&times;</button>' +

然后将一些自定义jQuery代码添加到您调用summernote的位置: -

$("button.close-summernote-dialog").click(function(){

   $('.note-image-dialog').modal('hide');
   $('.note-link-dialog').modal('hide');
   $('.note-video-dialog').modal('hide');
   $('.note-help-dialog').modal('hide');

})//end of $("button.close-summernote-dialog").click(function(){

最后添加一些css: -

.close-summernote-dialog {float: right ; font-size: 21px ; font-weight: bold ; line-height: 1 ; color: #000000 ; text-shadow: 0 1px 0 #ffffff ; opacity: 0.2 ; filter: alpha(opacity=20);}
.close-summernote-dialog:hover,
.close-summernote-dialog:focus {color: #000000 ; text-decoration: none ; cursor: pointer ; opacity: 0.5 ; filter: alpha(opacity=50);}
button.close-summernote-dialog {padding: 0 ; cursor: pointer ; background: transparent ; border: 0 ; -webkit-appearance: none;}

希望有帮助吗?

答案 2 :(得分:1)

因为你在另一个模态中打开一个模态。 这不是推荐的做法

http://getbootstrap.com/javascript/#modals

答案 3 :(得分:1)

我也遇到了这个问题,并且出现了另一个问题。当summernote模态关闭时,父模态滚动被销毁。继续修复。我刚刚在summernote.js的第2020行添加了这个$​​(“body”)。addClass(“modal-open”)。在“hideDialog”方法里面。

enter image description here

答案 4 :(得分:0)

之前我遇到过同样的问题,并通过以下步骤解决了这些问题:

首先 确保在创建summernote实例时指定dialogsInBody: true

二 要支持summernote中使用的嵌套多引导模式对话框,并支持显示工具提示和popover,请在全局位置注册以下事件处理程序:

$(document).on("show.bs.modal", '.modal', function (event) {
    console.log("Global show.bs.modal fire");
    var zIndex = 100000 + (10 * $(".modal:visible").length);
    $(this).css("z-index", zIndex);
    setTimeout(function () {
        $(".modal-backdrop").not(".modal-stack").first().css("z-index", zIndex - 1).addClass("modal-stack");
    }, 0);
}).on("hidden.bs.modal", '.modal', function (event) {
    console.log("Global hidden.bs.modal fire");
    $(".modal:visible").length && $("body").addClass("modal-open");
});
$(document).on('inserted.bs.tooltip', function (event) {
    console.log("Global show.bs.tooltip fire");
    var zIndex = 100000 + (10 * $(".modal:visible").length);
    var tooltipId = $(event.target).attr("aria-describedby");
    $("#" + tooltipId).css("z-index", zIndex);
});
$(document).on('inserted.bs.popover', function (event) {
    console.log("Global inserted.bs.popover fire");
    var zIndex = 100000 + (10 * $(".modal:visible").length);
    var popoverId = $(event.target).attr("aria-describedby");
    $("#" + popoverId).css("z-index", zIndex);
});

前面的代码将支持嵌套的引导模式对话框和工具提示和弹出框。以下图像显示结果:

1

2

3

您可以根据所需的值调整上述z-index。

以下发布的描述了这些代码:

https://github.com/summernote/summernote/issues/2644 https://github.com/summernote/summernote/issues/2457

答案 5 :(得分:0)

在bootstrap模式中使用summernote时遇到同样的问题。当我想添加图像/视频/链接时,summernote模式出现在父模式后面。所以这就是我解决问题的方法。

$('.summernote').summernote({
    height: 300,
    dialogsInBody: true
});

$('.note-image-dialog, .note-link-dialog, .note-video-dialog, .note-help-dialog').on('show.bs.modal', function() {
    $(this).detach().appendTo('body');
});

$('.note-image-dialog, .note-link-dialog, .note-video-dialog, .note-help-dialog').on('hide.bs.modal', function() {
    $(this).detach().appendTo('.note-dialog');
});