2

I am trying to do a module with a datepicker inside an accordion.

problem is the datepicker popup box is not visible over the accordion.

here is a plunker showing the problem :

http://plnkr.co/edit/jBqU0LXQFcUuzQLency2?p=preview

any idea on how i could make the dialog window appear over the accordion module ?

edit: with bootstrap 3, this is working :

.panel-group .panel {
    overflow: inherit;
}
4

2 回答 2

5

在 bootstrap.css 链接后添加这个 css 可以修复它。这将覆盖与position每个accordion-body.

<style type="text/css">
    .collapse {
        position: inherit;
    }
</style>
于 2013-08-30T00:01:41.890 回答
0

这适用于我 Bootstrap 版本 3:

.panel-body {
  overflow: inherit !important;
}

我的 datepicker 在 bootbox 中的手风琴中。

于 2015-12-15T17:33:44.657 回答