选择2 - 丢弃不正确的顶部位置

时间:2015-09-01 09:49:39

标签: jquery-select2 angularjs-select2

当我首先关注select2字段时,下拉列表打开正确

Anything is all right

但是当我选择其中一个项目时,下拉列表的顶部位置错误

Wrong position

如果我没有聚焦并再次关注,那么下拉列表就没有问题了

Correct again

如何解决?

1 个答案:

答案 0 :(得分:0)

对于那些像我一样从Google到达的人:

下拉列表的错误位置发生在您第一次单击下拉列表时以及在没有结果的搜索之后第一次单击下拉列表时。

Here is a workaround似乎适用于许多人(包括我)。我的实现如下:

<select class="form-control" data-use-select2="true" name="assessment[assigned_to_id]" id="assessment_assigned_to_id">
<option value="">Select User...</option>
<option value="12">org0user0@test.com</option>
<option value="11">org0user1@test.com</option>
</select>
<select class="form-control" data-use-select2="true" name="assessment[approver_id]" id="assessment_approver_id" >
<option value="">Select User...</option>
<option value="12">org0user0@test.com</option>
<option value="11">org0user1@test.com</option>
</select>
    // data-select2 conflicts with library code. data-something-select2 works
    // set the dropdownParent to fix positioning error
    // https://github.com/select2/select2-bootstrap-theme/issues/41#issuecomment-310825598
    $("select[data-use-select2]").each(function() {
        $(this).select2({
            theme: "bootstrap4",
            dropdownParent: $(this).parent()
        });
    });