12

我正在使用 Select2 插件,但是当插件与 jQuery 模态对话框一起使用时,内置的搜索功能不起作用。我有一个小提琴,显示问题在......

http://jsfiddle.net/jeljeljel/s3AFx/

请注意,搜索框不会接受焦点。_allowInteraction 事件(http://api.jqueryui.com/dialog/#method-_allowInteraction)应该有一个解决方法,但它对我不起作用。

谁能帮忙看看如何使这个小提琴工作?

此外,这篇 SO 帖子(当不在 jquery 模态对话框中时 select2 插件工作正常)讨论了同样的问题,但建议的修复对我不起作用。

HTML

<div class="dialog">
    <select>
        <option>A tall ship was seen a</option>
        <option>A tall ship was seen b</option>
        <option>A tall ship was seen c</option>
        <option>A tall ship was seen d</option>
        <option>A tall ship was seen e</option>
        <option>A tall ship was seen f</option>
    </select>
</div>

JAVASCRIPT

$('.dialog').dialog({
    modal: true,
    _allowInteraction: function (event) {
        return !!$(event.target).is(".select2-input") || this._super(event);
    }
});
$('select').select2();
4

5 回答 5

24

bigwavesoftware 为 select2 4.0 提供了一个新版本的修复程序,来自github 问题线程,关于这个问题

if ($.ui && $.ui.dialog && $.ui.dialog.prototype._allowInteraction) {
    var ui_dialog_interaction = $.ui.dialog.prototype._allowInteraction;
    $.ui.dialog.prototype._allowInteraction = function(e) {
        if ($(e.target).closest('.select2-dropdown').length) return true;
        return ui_dialog_interaction.apply(this, arguments);
    };
}

这只需要在创建任何包含 select2 的模式对话框之前运行;您不需要像在 bigwavesoftware 的解决方案中那样在对话框选项中做任何特别的事情。

此修复程序的 JSFiddle 实际操作

于 2015-08-19T15:04:08.120 回答
6

添加我在https://github.com/ivaynberg/select2/issues/1246找到的一些代码似乎已经解决了这个问题。更新小提琴...

http://jsfiddle.net/jeljeljel/s3AFx/4/

JAVASCRIPT

$('.dialog').dialog({
    modal: true,
    open: function () {
        if ($.ui && $.ui.dialog && !$.ui.dialog.prototype._allowInteractionRemapped && $(this).closest(".ui-dialog").length) {
            if ($.ui.dialog.prototype._allowInteraction) {
                $.ui.dialog.prototype._allowInteraction = function (e) {
                    if ($(e.target).closest('.select2-drop').length) return true;
                    return ui_dialog_interaction.apply(this, arguments);
                };
                $.ui.dialog.prototype._allowInteractionRemapped = true;
            }
            else {
                $.error("You must upgrade jQuery UI or else.");
            }
        }
    },
    _allowInteraction: function (event) {
        return !!$(event.target).is(".select2-input") || this._super(event);
    }
});
$('select').select2();
于 2013-11-05T11:56:17.837 回答
4

我通过将此代码添加到 JS 解决了这个问题

$.ui.dialog.prototype._allowInteraction = function(e) {
    return !!$(e.target).closest('.ui-dialog, .ui-datepicker, .select2-drop').length;
};

我在这里找到了这个https://github.com/ivaynberg/select2/issues/1246#issuecomment-17428249

于 2013-11-17T13:54:51.367 回答
2

这对我有用:

$("#modal").dialog({
    closeOnEscape: false,   
    resizable: false,
    height: 180,
    maxHeight: 180,
    width: 700,
    maxWidth: 700,
    modal: true,
    autoOpen: false,
    fluid: true,
    open: function () {
        if ($.ui && $.ui.dialog && !$.ui.dialog.prototype._allowInteractionRemapped && $(this).closest(".ui-dialog").length) {
            if ($.ui.dialog.prototype._allowInteraction) {
                $.ui.dialog.prototype._allowInteraction = function (e) {
                    if ($(e.target).closest('.select2-drop').length) return true;

                    if (typeof ui_dialog_interaction!="undefined") {
                        return ui_dialog_interaction.apply(this, arguments);
                    } else {
                        return true;
                    }
                };
                $.ui.dialog.prototype._allowInteractionRemapped = true;
            }
            else {
                $.error("You must upgrade jQuery UI or else.");
            }
        }
    },
    _allowInteraction: function (event) {
        return !!$(e.target).closest('.ui-dialog, .ui-datepicker, .select2-drop').length;
    }
});
于 2018-03-16T12:21:55.570 回答
0

以上似乎都不适合我。但是,我确实在对话框初始化中更改了以下内容:

dialog = $( "#my-dialog" ).dialog({
                autoOpen: false,
                width: 440,
                title: 'Test Dialog',
                ...
         });

form = dialog.find( "form" ).on( "submit", function( event ) {
    event.preventDefault();
});

dialog.dialog( "open" );

基本上,我去掉了 'modal: true' 参数并且它起作用了。

无论如何为我工作:)

于 2018-02-08T13:39:47.713 回答