Select2不在Kendo UI Window上工作

时间:2014-06-16 09:23:16

标签: angularjs kendo-ui jquery-select2

我正在尝试在 Kendo Window 上使用 Select2 插件。但它不适合我。尝试打开时,ComboBox内容不可见。

enter image description here

1 个答案:

答案 0 :(得分:2)

只需要select2.cssselect2-drop更改了z-index,它就可以正常使用

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 10010;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}