通过select2-open事件设置bootbox对话框窗口焦点

时间:2015-02-09 23:10:11

标签: jquery-select2 bootbox

当用户使用以下代码

在select-2输入框内单击时,我打开一个bootbox对话框
$("#categoryfinder").on("select2-open", function () {
    bootbox.confirm("Are you sure?", function (result) {
        Example.show("Confirm result: " + result);
    });
});

打开后,弹出窗口不活动,我必须单击两次才能关闭或触发弹出窗口上的任何事件

如果有任何解决方案,请告诉我。

编辑:当我在1中单击时,弹出窗口在1,2,3处不活动,我必须单击一次才能激活它。

enter image description here

1 个答案:

答案 0 :(得分:0)

我通过执行以下更改修复了此问题

$("#allergenfinder").on("select2-opening", function (e) {
    e.preventDefault();
    excludeAllergenPrompt();

});